diff options
Diffstat (limited to 'movieobjects/dmeoperator.cpp')
| -rw-r--r-- | movieobjects/dmeoperator.cpp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/movieobjects/dmeoperator.cpp b/movieobjects/dmeoperator.cpp new file mode 100644 index 0000000..e0f0707 --- /dev/null +++ b/movieobjects/dmeoperator.cpp @@ -0,0 +1,36 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//============================================================================= +#include "movieobjects/dmeoperator.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( DmeOperator, CDmeOperator ); + + +//----------------------------------------------------------------------------- +// Purpose: +//----------------------------------------------------------------------------- +void CDmeOperator::OnConstruction() +{ +} + +void CDmeOperator::OnDestruction() +{ +} + +//----------------------------------------------------------------------------- +// IsDirty - ie needs to operate +//----------------------------------------------------------------------------- +bool CDmeOperator::IsDirty() +{ + return BaseClass::IsDirty(); +} |