mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-14 03:32:23 +01:00
<feat: New project structure>
<feat: New release>
This commit is contained in:
24
dependencies/reboot/Project Reboot 3.0/MegaStormManager.h
vendored
Normal file
24
dependencies/reboot/Project Reboot 3.0/MegaStormManager.h
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
#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);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user