cstrike15_src/public/mdlobjects/dmeincludemodellist.h
2025-06-04 03:22:50 +02:00

35 lines
806 B
C++

//====== Copyright © 1996-2004, Valve Corporation, All rights reserved. =====//
//
// Dme version of a list of $includemodel
//
//===========================================================================//
#ifndef DMEINCLUDEMODELLIST_H
#define DMEINCLUDEMODELLIST_H
#ifdef _WIN32
#pragma once
#endif
#include "datamodel/dmelement.h"
#include "datamodel/dmattributevar.h"
//-----------------------------------------------------------------------------
// A class representing a list of $includemodel
//-----------------------------------------------------------------------------
class CDmeIncludeModelList : public CDmElement
{
DEFINE_ELEMENT( CDmeIncludeModelList, CDmElement );
public:
#ifndef SWIG
CDmaStringArray m_IncludeModels;
#endif // #ifndef SWIG
};
#endif // DMEINCLUDEMODELLIST_H