This commit is contained in:
Gray
2025-07-18 18:40:13 -04:00
parent 8f0ce8919e
commit 62ffdccd42
15 changed files with 292 additions and 82 deletions

View File

@@ -6,6 +6,7 @@
#include "Rotator.h"
#include "Actor.h"
#include "GameInstance.h"
#include "Array.h"
struct FNetworkNotify
{
@@ -222,6 +223,12 @@ public:
return this->Get<class AGameState*>(GameStateOffset);
}
TArray<class ULevelStreaming*>& GetStreamingLevels()
{
static auto StreamingLevelsOffset = GetOffset("StreamingLevels");
return this->Get<TArray<class ULevelStreaming*>>(StreamingLevelsOffset);
}
class UNetDriver*& GetNetDriver()
{
static auto NetDriverOffset = GetOffset("NetDriver");