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.0 KiB

  1. //====== Copyright � 1996-2008, Valve Corporation, All rights reserved. =====//
  2. //
  3. // A list of DmeSequences's
  4. //
  5. //===========================================================================//
  6. #ifndef DMEDEFINEBONELIST_H
  7. #define DMEDEFINEBONELIST_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 CDmeDefineBone;
  17. //-----------------------------------------------------------------------------
  18. // A class representing a list of sequences
  19. //-----------------------------------------------------------------------------
  20. class CDmeDefineBoneList : public CDmeMdlList
  21. {
  22. DEFINE_ELEMENT( CDmeDefineBoneList, CDmeMdlList );
  23. public:
  24. virtual CDmAttribute *GetListAttr() { return m_DefineBones.GetAttribute(); }
  25. CDmaElementArray< CDmeDefineBone > m_DefineBones;
  26. };
  27. #endif // DMEDEFINEBONELIST_H