mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
quite a bit
llamas, fix some ltm specific stuff, add auto bus start for auto restart, work in progress lategame on 1.11, fix a crash, performance
This commit is contained in:
@@ -2,9 +2,20 @@
|
||||
|
||||
#include "Actor.h"
|
||||
|
||||
enum class EFortSafeZoneState : uint8_t
|
||||
{
|
||||
None = 0,
|
||||
Starting = 1,
|
||||
Holding = 2,
|
||||
Shrinking = 3,
|
||||
EFortSafeZoneState_MAX = 4
|
||||
};
|
||||
|
||||
class AFortSafeZoneIndicator : public AActor
|
||||
{
|
||||
public:
|
||||
static inline void (*OnSafeZoneStateChangeOriginal)(AFortSafeZoneIndicator* SafeZoneIndicator, EFortSafeZoneState NewState, bool bInitial);
|
||||
|
||||
float& GetSafeZoneStartShrinkTime()
|
||||
{
|
||||
static auto SafeZoneStartShrinkTimeOffset = GetOffset("SafeZoneStartShrinkTime");
|
||||
@@ -18,4 +29,6 @@ public:
|
||||
}
|
||||
|
||||
void SkipShrinkSafeZone();
|
||||
|
||||
static void OnSafeZoneStateChangeHook(AFortSafeZoneIndicator* SafeZoneIndicator, EFortSafeZoneState NewState, bool bInitial);
|
||||
};
|
||||
Reference in New Issue
Block a user