mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
fixed respawning on pre s6, fixed a crash for some s5 builds, work on ai a bit, start on blueprint decompiler
17 lines
455 B
C++
17 lines
455 B
C++
#pragma once
|
|
|
|
#include "FortPlayerPawn.h"
|
|
|
|
class AFortPlayerPawnAthena : public AFortPlayerPawn
|
|
{
|
|
public:
|
|
static inline void (*OnCapsuleBeginOverlapOriginal)(UObject* Context, FFrame* Stack, void* Ret);
|
|
|
|
uint8& GetDBNORevivalStacking()
|
|
{
|
|
static auto DBNORevivalStackingOffset = GetOffset("DBNORevivalStacking");
|
|
return Get<uint8>(DBNORevivalStackingOffset);
|
|
}
|
|
|
|
static void OnCapsuleBeginOverlapHook(UObject* Context, FFrame* Stack, void* Ret);
|
|
}; |