mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-10-30 07:11:05 +00:00
13 lines
286 B
C++
13 lines
286 B
C++
namespace Hedgehog::Universe
|
|
{
|
|
inline void* CStateMachineBase::CStateBase::GetContextBase() const
|
|
{
|
|
return m_pContext;
|
|
}
|
|
|
|
template<typename T>
|
|
inline T* CStateMachineBase::CStateBase::GetContextBase() const
|
|
{
|
|
return (T*)m_pContext.get();
|
|
}
|
|
}
|