mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-28 15:45:41 +03:00
90d08ee3a0
Ignore VS2015 files. Add ResetSequenceInfo in SetNewPlayerModel. Interface API CCSPlayer: Added ResetSequenceInfo and reworked RemovePlayerItem Bump minor version
37 lines
452 B
C++
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;
|
|
}
|