diff options
Diffstat (limited to 'mdlobjects/dmeblankbodypart.cpp')
| -rw-r--r-- | mdlobjects/dmeblankbodypart.cpp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mdlobjects/dmeblankbodypart.cpp b/mdlobjects/dmeblankbodypart.cpp new file mode 100644 index 0000000..0f5a5ec --- /dev/null +++ b/mdlobjects/dmeblankbodypart.cpp @@ -0,0 +1,35 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Dme blank/empty body part base class +// +//===========================================================================// + + +#include "datamodel/dmelementfactoryhelper.h" +#include "mdlobjects/dmeblankbodypart.h" + + +// memdbgon must be the last include file in a .cpp file!!! +#include "tier0/memdbgon.h" + + +//----------------------------------------------------------------------------- +// Expose this class to the scene database +//----------------------------------------------------------------------------- +IMPLEMENT_ELEMENT_FACTORY( DmeBlankBodyPart, CDmeBlankBodyPart ); + + +//----------------------------------------------------------------------------- +// +//----------------------------------------------------------------------------- +void CDmeBlankBodyPart::OnConstruction() +{ +} + + +//----------------------------------------------------------------------------- +// +//----------------------------------------------------------------------------- +void CDmeBlankBodyPart::OnDestruction() +{ +}
\ No newline at end of file |