ReGameDLL_CS/regamedll/dlls/tutor_base_states.cpp

37 lines
452 B
C++
Raw Normal View History

2015-06-30 12:46:07 +03:00
#include "precompiled.h"
CBaseTutorStateSystem::CBaseTutorStateSystem()
{
;
2015-06-30 12:46:07 +03:00
}
CBaseTutorStateSystem::~CBaseTutorStateSystem()
2015-06-30 12:46:07 +03:00
{
2015-08-20 13:35:01 +03:00
;
2015-06-30 12:46:07 +03:00
}
int CBaseTutorStateSystem::GetCurrentStateType() const
2015-06-30 12:46:07 +03:00
{
if (m_currentState)
2015-08-20 13:35:01 +03:00
{
return m_currentState->GetType();
}
return 0;
2015-06-30 12:46:07 +03:00
}
CBaseTutorState::CBaseTutorState()
2015-06-30 12:46:07 +03:00
{
2015-08-20 13:35:01 +03:00
;
2015-06-30 12:46:07 +03:00
}
CBaseTutorState::~CBaseTutorState()
2015-06-30 12:46:07 +03:00
{
2015-08-20 13:35:01 +03:00
;
2015-06-30 12:46:07 +03:00
}
int CBaseTutorState::GetType() const
2015-06-30 12:46:07 +03:00
{
2015-08-20 13:35:01 +03:00
return m_type;
2015-06-30 12:46:07 +03:00
}