mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
19 lines
350 B
C++
19 lines
350 B
C++
#pragma once
|
|
|
|
#include "FortPlayerState.h"
|
|
|
|
class AFortPlayerStateAthena : public AFortPlayerState
|
|
{
|
|
public:
|
|
uint8& GetSquadId()
|
|
{
|
|
static auto SquadIdOffset = GetOffset("SquadId");
|
|
return Get<uint8>(SquadIdOffset);
|
|
}
|
|
|
|
uint8& GetTeamIndex()
|
|
{
|
|
static auto TeamIndexOffset = GetOffset("TeamIndex");
|
|
return Get<uint8>(TeamIndexOffset);
|
|
}
|
|
}; |