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.

37 lines
1.2 KiB

  1. //===== Copyright (c) 1996-2009, Valve Corporation, All rights reserved. ====
  2. //
  3. // List of DmePoseParamaters
  4. //
  5. //===========================================================================//
  6. // Valve includes
  7. #include "datamodel/dmelementfactoryhelper.h"
  8. #include "mdlobjects/dmeposeparameter.h"
  9. #include "mdlobjects/dmeposeparameterlist.h"
  10. // memdbgon must be the last include file in a .cpp file!!!
  11. #include "tier0/memdbgon.h"
  12. //-----------------------------------------------------------------------------
  13. // Expose this class to the scene database
  14. //-----------------------------------------------------------------------------
  15. IMPLEMENT_ELEMENT_FACTORY( DmePoseParameterList, CDmePoseParameterList );
  16. //-----------------------------------------------------------------------------
  17. //
  18. //-----------------------------------------------------------------------------
  19. void CDmePoseParameterList::OnConstruction()
  20. {
  21. m_ePoseParameterList.Init( this, "poseParameterList" );
  22. }
  23. //-----------------------------------------------------------------------------
  24. //
  25. //-----------------------------------------------------------------------------
  26. void CDmePoseParameterList::OnDestruction()
  27. {
  28. }