mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 03:02:22 +01:00
24 lines
487 B
C++
24 lines
487 B
C++
#pragma once
|
|
|
|
#include "Actor.h"
|
|
|
|
#include "reboot.h"
|
|
|
|
struct FMegaStormCircle
|
|
{
|
|
int GetStructSize()
|
|
{
|
|
static auto MegaStormCircleStruct = FindObject<UStruct>("/Script/FortniteGame.MegaStormCircle");
|
|
return MegaStormCircleStruct->GetPropertiesSize();
|
|
}
|
|
};
|
|
|
|
class AMegaStormManager : public AActor
|
|
{
|
|
public:
|
|
TArray<__int64>& GetMegaStormCircles()
|
|
{
|
|
static auto MegaStormCirclesOffset = GetOffset("MegaStormCircles");
|
|
return Get<TArray<__int64>>(MegaStormCirclesOffset);
|
|
}
|
|
}; |