mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-06-04 10:49:08 -04:00
14 lines
286 B
C++
14 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();
|
|
}
|
|
}
|