1
This commit is contained in:
36
movieobjects/dmeoperator.cpp
Normal file
36
movieobjects/dmeoperator.cpp
Normal file
@ -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();
|
||||
}
|
Reference in New Issue
Block a user