make commands actually reply to console

This commit is contained in:
Milxnor
2023-04-03 21:13:34 -04:00
parent fa6fac754a
commit bd4a8da94f
14 changed files with 182 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include "FortPlayerPawn.h"
class AFortPlayerPawnAthena : public AFortPlayerPawn
{
public:
static inline void (*OnCapsuleBeginOverlapOriginal)(UObject* Context, FFrame* Stack, void* Ret);
static void OnCapsuleBeginOverlapHook(UObject* Context, FFrame* Stack, void* Ret);
};