diff options
Diffstat (limited to 'movieobjects/dmeinput.cpp')
| -rw-r--r-- | movieobjects/dmeinput.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/movieobjects/dmeinput.cpp b/movieobjects/dmeinput.cpp new file mode 100644 index 0000000..838082b --- /dev/null +++ b/movieobjects/dmeinput.cpp @@ -0,0 +1,36 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= +#include "movieobjects/dmeinput.h" +#include "datamodel/dmelementfactoryhelper.h" + +// memdbgon must be the last include file in a .cpp file!!! +#include "tier0/memdbgon.h" + + +//----------------------------------------------------------------------------- +// Expose this class to the scene database +//----------------------------------------------------------------------------- +IMPLEMENT_ABSTRACT_ELEMENT( DmeInput, CDmeInput ); + + +//----------------------------------------------------------------------------- +// Purpose: +//----------------------------------------------------------------------------- +void CDmeInput::OnConstruction() +{ +} + +void CDmeInput::OnDestruction() +{ +} + +//----------------------------------------------------------------------------- +// IsDirty - ie needs to operate +//----------------------------------------------------------------------------- +bool CDmeInput::IsDirty() +{ + return true; +} |