Files
m2dev-client-src/src/UserInterface/InstanceBaseEvent.cpp
d1str4ught 4be475f111 init
2025-08-18 19:46:48 +02:00

18 lines
445 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);
}