2015-06-30 12:46:07 +03:00
|
|
|
#include "precompiled.h"
|
|
|
|
|
2016-02-04 03:18:26 +03:00
|
|
|
CBaseTutorStateSystem::CBaseTutorStateSystem()
|
|
|
|
{
|
|
|
|
;
|
2015-06-30 12:46:07 +03:00
|
|
|
}
|
|
|
|
|
2016-02-04 03:18:26 +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
|
|
|
}
|
|
|
|
|
2016-02-04 03:18:26 +03:00
|
|
|
int CBaseTutorStateSystem::GetCurrentStateType() const
|
2015-06-30 12:46:07 +03:00
|
|
|
{
|
2015-08-20 13:35:01 +03:00
|
|
|
if (m_currentState != NULL)
|
|
|
|
{
|
|
|
|
return m_currentState->GetType();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2015-06-30 12:46:07 +03:00
|
|
|
}
|
|
|
|
|
2016-02-04 03:18:26 +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
|
|
|
}
|
|
|
|
|
2016-02-04 03:18:26 +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
|
|
|
}
|
|
|
|
|
2016-02-04 03:18:26 +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
|
|
|
}
|