This commit is contained in:
Milxnor
2023-03-05 22:30:29 -05:00
parent 472fbdb809
commit ae259f97eb
23 changed files with 982 additions and 54 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "FortPawn.h"
#include "FortPickup.h"
struct PadHex100 { char pad[0x100]; };
using FZiplinePawnState = PadHex100;
class AFortPlayerPawn : public AFortPawn
{
public:
static void ServerSendZiplineStateHook(AFortPlayerPawn* Pawn, FZiplinePawnState InZiplineState);
static void ServerHandlePickupHook(AFortPlayerPawn* Pawn, AFortPickup* Pickup, float InFlyTime, FVector InStartDirection, bool bPlayPickupSound);
};