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.
13 lines
377 B
C
13 lines
377 B
C
1 year ago
|
#pragma once
|
||
|
#include "CBaseEntity.h"
|
||
|
#include "CBasePlayerPawn.h"
|
||
|
#include "ehandle.h"
|
||
|
#include "schemasystem.h"
|
||
|
|
||
|
class CBasePlayerController : public SC_CBaseEntity
|
||
|
{
|
||
|
public:
|
||
|
SCHEMA_FIELD(CHandle<CBasePlayerPawn>, CBasePlayerController, m_hPawn);
|
||
|
SCHEMA_FIELD(char[128], CBasePlayerController, m_iszPlayerName);
|
||
|
SCHEMA_FIELD(uint64_t, CBasePlayerController, m_steamID);
|
||
|
};
|