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.

40 lines
1.0 KiB

  1. //====== Copyright � 1996-2004, Valve Corporation, All rights reserved. =====//
  2. //
  3. // Dme version of a hitbox set
  4. //
  5. //===========================================================================//
  6. #ifndef DMEHITBOXSETLIST_H
  7. #define DMEHITBOXSETLIST_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 CDmeHitboxSet;
  17. //-----------------------------------------------------------------------------
  18. // A class representing an attachment point
  19. //-----------------------------------------------------------------------------
  20. class CDmeHitboxSetList : public CDmeMdlList
  21. {
  22. DEFINE_ELEMENT( CDmeHitboxSetList, CDmeMdlList );
  23. public:
  24. virtual CDmAttribute *GetListAttr() { return m_HitboxSetList.GetAttribute(); }
  25. CDmaElementArray< CDmeHitboxSet > m_HitboxSetList;
  26. };
  27. #endif // DMEHITBOXSETLIST_H