Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB

  1. //====== Copyright � 1996-2008, Valve Corporation, All rights reserved. =====//
  2. //
  3. // A list of DmeSequences's
  4. //
  5. //===========================================================================//
  6. #ifndef DMEMATERIALGROUPSLIST_H
  7. #define DMEMATERIALGROUPSLIST_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. #include "datamodel/dmattributevar.h"
  12. #include "mdlobjects/dmemdllist.h"
  13. //-----------------------------------------------------------------------------
  14. // Forward Declarations
  15. //-----------------------------------------------------------------------------
  16. class CDmeMaterialGroup;
  17. //-----------------------------------------------------------------------------
  18. // A class representing a list of sequences
  19. //-----------------------------------------------------------------------------
  20. class CDmeMaterialGroupList : public CDmeMdlList
  21. {
  22. DEFINE_ELEMENT( CDmeMaterialGroupList, CDmeMdlList );
  23. public:
  24. virtual CDmAttribute *GetListAttr() { return m_MaterialGroups.GetAttribute(); }
  25. CDmaElementArray< CDmeMaterialGroup > m_MaterialGroups;
  26. };
  27. #endif // DMEDEFINEBONELIST_H