Fixup 'CMoveHelperServer' and 'CMoveHelperClient'

Uncomment field.
This commit is contained in:
Kawe Mazidjatari 2023-01-20 17:21:34 +01:00
parent 7b669ea8c6
commit 1d8e61ebff
2 changed files with 6 additions and 4 deletions

View File

@ -7,8 +7,9 @@
#ifndef MOVEHELPER_CLIENT_H
#define MOVEHELPER_CLIENT_H
#include "game/shared/imovehelper.h"
#include "tier1/utlvector.h"
#include "public/gametrace.h"
#include "game/shared/imovehelper.h"
class CMoveHelperClient : public IMoveHelper
{
@ -18,7 +19,7 @@ class CMoveHelperClient : public IMoveHelper
struct touchlist_t
{
Vector3D deltavelocity;
//trace_t trace; // !TODO: Reverse CGameTrace!
trace_t trace;
};
CUtlVector<touchlist_t> m_TouchList;

View File

@ -7,8 +7,9 @@
#ifndef MOVEHELPER_SERVER_H
#define MOVEHELPER_SERVER_H
#include "game/shared/imovehelper.h"
#include "tier1/utlvector.h"
#include "public/gametrace.h"
#include "game/shared/imovehelper.h"
class CMoveHelperServer : public IMoveHelper
{
@ -18,7 +19,7 @@ class CMoveHelperServer : public IMoveHelper
struct touchlist_t
{
Vector3D deltavelocity;
//trace_t trace; // !TODO: Reverse CGameTrace!
trace_t trace;
};
CBaseEntity* m_pHost;