19 lines
496 B
C++
19 lines
496 B
C++
#include "StdAfx.h"
|
|
#include "InstanceBase.h"
|
|
|
|
CActorInstance::IEventHandler& CInstanceBase::GetEventHandlerRef()
|
|
{
|
|
return m_GraphicThingInstance.__GetEventHandlerRef();
|
|
}
|
|
|
|
CActorInstance::IEventHandler* CInstanceBase::GetEventHandlerPtr()
|
|
{
|
|
return m_GraphicThingInstance.__GetEventHandlerPtr();
|
|
}
|
|
|
|
void CInstanceBase::SetEventHandler(CActorInstance::IEventHandler* pkEventHandler)
|
|
{
|
|
m_GraphicThingInstance.SetEventHandler(pkEventHandler);
|
|
}
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|