You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
456 B
C
14 lines
456 B
C
1 year ago
|
#pragma once
|
||
|
#include "CBaseCombatCharacter.h"
|
||
|
#include "CPlayer_ItemServices.h"
|
||
|
#include "CBasePlayerController.h"
|
||
|
#include "ehandle.h"
|
||
|
#include "schemasystem.h"
|
||
|
|
||
|
class CBasePlayerPawn : public CBaseCombatCharacter
|
||
|
{
|
||
|
public:
|
||
|
SCHEMA_FIELD(CPlayer_WeaponServices*, CBasePlayerPawn, m_pWeaponServices);
|
||
|
SCHEMA_FIELD(CPlayer_ItemServices*, CBasePlayerPawn, m_pItemServices);
|
||
|
SCHEMA_FIELD(CHandle<CBasePlayerController>, CBasePlayerPawn, m_hController);
|
||
|
};
|