mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-28 15:45:41 +03:00
3d252fe527
Fixed some critical bugs and typos (carrer_task, tutor, zbot and other) Added command line option `-bots` to run bots in CS 1.6 Removed the tests demo record/player from myself the project and also dependency of the steam library. Fixed the progress bar when generating a nav file.
37 lines
460 B
C++
37 lines
460 B
C++
#include "precompiled.h"
|
|
|
|
CBaseTutorStateSystem::CBaseTutorStateSystem()
|
|
{
|
|
;
|
|
}
|
|
|
|
CBaseTutorStateSystem::~CBaseTutorStateSystem()
|
|
{
|
|
;
|
|
}
|
|
|
|
int CBaseTutorStateSystem::GetCurrentStateType() const
|
|
{
|
|
if (m_currentState != NULL)
|
|
{
|
|
return m_currentState->GetType();
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
CBaseTutorState::CBaseTutorState()
|
|
{
|
|
;
|
|
}
|
|
|
|
CBaseTutorState::~CBaseTutorState()
|
|
{
|
|
;
|
|
}
|
|
|
|
int CBaseTutorState::GetType() const
|
|
{
|
|
return m_type;
|
|
}
|