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
943 B

  1. //============ Copyright (c) Valve Corporation, All rights reserved. ==========
  2. //
  3. //=============================================================================
  4. #ifndef DMEMOUTH_H
  5. #define DMEMOUTH_H
  6. #ifdef _WIN32
  7. #pragma once
  8. #endif
  9. // Valve includes
  10. #include "datamodel/dmelement.h"
  11. #include "datamodel/dmattributevar.h"
  12. //-----------------------------------------------------------------------------
  13. // Forward declarations
  14. //-----------------------------------------------------------------------------
  15. class CDmeDag;
  16. //-----------------------------------------------------------------------------
  17. // DmeEyeball
  18. //-----------------------------------------------------------------------------
  19. class CDmeMouth : public CDmElement
  20. {
  21. DEFINE_ELEMENT( CDmeMouth, CDmElement );
  22. public:
  23. CDmaVar< int > m_nMouthNumber;
  24. CDmaString m_sFlexControllerName;
  25. CDmaString m_sBoneName;
  26. CDmaVar< Vector > m_vForward;
  27. };
  28. #endif // DMEMOUTH_H