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.

39 lines
840 B

  1. //===== Copyright (c) 1996-2009, Valve Corporation, All rights reserved. ====
  2. //
  3. // Dme version of QC $poseparameter
  4. //
  5. //===========================================================================
  6. #ifndef DMEPOSEPARAMETER_H
  7. #define DMEPOSEPARAMETER_H
  8. #ifdef _WIN32
  9. #pragma once
  10. #endif
  11. // Valve includes
  12. #include "datamodel/dmelement.h"
  13. #include "datamodel/dmattributevar.h"
  14. //-----------------------------------------------------------------------------
  15. // $QC poseparam
  16. //-----------------------------------------------------------------------------
  17. class CDmePoseParameter : public CDmElement
  18. {
  19. DEFINE_ELEMENT( CDmePoseParameter, CDmElement );
  20. public:
  21. CDmaVar< float > m_flMin;
  22. CDmaVar< float > m_flMax;
  23. CDmaVar< bool > m_bLoop;
  24. CDmaVar< float > m_flLoopRange;
  25. CDmaVar< bool > m_bWrap;
  26. };
  27. #endif // DMEPOSEPARAMETER_H