mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
15 lines
437 B
C++
15 lines
437 B
C++
#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);
|
|
}; |