ReGameDLL_CS/regamedll/dlls/tutor_base_states.cpp
s1lent 90d08ee3a0 Refactoring & fix warnings VS2015.
Ignore VS2015 files.
Add ResetSequenceInfo in SetNewPlayerModel.
Interface API CCSPlayer: Added ResetSequenceInfo and reworked RemovePlayerItem
Bump minor version
2017-01-30 23:07:56 +07:00

37 lines
452 B
C++

#include "precompiled.h"
CBaseTutorStateSystem::CBaseTutorStateSystem()
{
;
}
CBaseTutorStateSystem::~CBaseTutorStateSystem()
{
;
}
int CBaseTutorStateSystem::GetCurrentStateType() const
{
if (m_currentState)
{
return m_currentState->GetType();
}
return 0;
}
CBaseTutorState::CBaseTutorState()
{
;
}
CBaseTutorState::~CBaseTutorState()
{
;
}
int CBaseTutorState::GetType() const
{
return m_type;
}