Files
cool-source-archive/game/server/sdk/skeleton_playermove.cpp
Totterynine 4b952b0e4e init
2021-09-13 15:31:53 +05:00

13 lines
327 B
C++

#include "cbase.h"
#include "player_command.h"
#include "igamemovement.h"
#include "ipredictionsystem.h"
static CMoveData g_MoveData;
CMoveData* g_pMoveData = &g_MoveData;
IPredictionSystem* IPredictionSystem::g_pPredictionSystems = NULL;
static CPlayerMove g_PlayerMove;
CPlayerMove* PlayerMove() { return &g_PlayerMove; }