Files
Project-Reboot-3.0/Project Reboot 3.0/MegaStormManager.h
Milxnor 769dfa08ef a bit
added some specific playlist items, fix s8-s10 markers because i broke, fixed removing items on aircraft on every version, added thanos stone automatic spawning, fix a bug with lategame, add marshmello stage, fix multiple battle buses, fix teams on large team gamemodes, fix some items not removing automatically
2023-04-21 22:09:20 -04:00

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);
}
};