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.

41 lines
1.1 KiB

  1. //===== Copyright (c) 1996-2009, Valve Corporation, All rights reserved. ====
  2. //
  3. // List of DmePoseParamaters
  4. //
  5. //===========================================================================
  6. #ifndef DMEPOSEPARAMETERLIST_H
  7. #define DMEPOSEPARAMETERLIST_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. // Valve includes
  12. #include "datamodel/dmattributevar.h"
  13. #include "mdlobjects/dmemdllist.h"
  14. //-----------------------------------------------------------------------------
  15. // Forward Declarations
  16. //-----------------------------------------------------------------------------
  17. class CDmePoseParameter;
  18. //-----------------------------------------------------------------------------
  19. // A class representing a list of LODs
  20. //-----------------------------------------------------------------------------
  21. class CDmePoseParameterList : public CDmElement
  22. {
  23. DEFINE_ELEMENT( CDmePoseParameterList, CDmElement );
  24. public:
  25. virtual CDmAttribute *GetListAttr() { return m_ePoseParameterList.GetAttribute(); }
  26. CDmaElementArray< CDmePoseParameter > m_ePoseParameterList;
  27. };
  28. #endif // DMEPOSEPARAMETERLIST_H