From 8a615adfc68959af50a97e22d638c0bae5970b54 Mon Sep 17 00:00:00 2001 From: DayibBaba <79384354+DayibBaba@users.noreply.github.com> Date: Fri, 30 Jun 2023 20:50:38 +0200 Subject: [PATCH] feat(NetSync): added CPlayerExtendedGameStateNode.hpp (#120) --- .../player/CPlayerExtendedGameStateNode.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 netsync/nodes/player/CPlayerExtendedGameStateNode.hpp diff --git a/netsync/nodes/player/CPlayerExtendedGameStateNode.hpp b/netsync/nodes/player/CPlayerExtendedGameStateNode.hpp new file mode 100644 index 0000000..7f21e76 --- /dev/null +++ b/netsync/nodes/player/CPlayerExtendedGameStateNode.hpp @@ -0,0 +1,19 @@ +#pragma once +#include +#include "netsync/CProjectBaseSyncDataNode.hpp" + +#pragma pack(push, 1) +class CPlayerExtendedGameStateNode : CSyncDataNodeInfrequent +{ +public: + float waypoint_x; //0x00C0 + float waypoint_y; //0x00C4 + bool unk1; //0x00C5 + bool unk2; //0x00C6 + bool unk3; //0x00C7 + bool unk4; //0x00C8 + bool unk5; //0x00C9 + bool has_waypoint_data; //0x00CA + bool is_waypoint_set; //0x00CB +}; +#pragma pack(pop)