mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
toggling respawn, auto parachute height changer changer, fixed issue with characterparts, fixed lategame on s8, added cheat commands
27 lines
538 B
C++
27 lines
538 B
C++
#pragma once
|
|
|
|
#include "FortPlaylist.h"
|
|
|
|
enum class EAthenaRespawnType : uint8_t
|
|
{
|
|
None = 0,
|
|
InfiniteRespawn = 1,
|
|
InfiniteRespawnExceptStorm = 2,
|
|
EAthenaRespawnType_MAX = 3
|
|
};
|
|
|
|
class UFortPlaylistAthena : public UFortPlaylist
|
|
{
|
|
public:
|
|
EAthenaRespawnType& GetRespawnType()
|
|
{
|
|
static auto RespawnTypeOffset = GetOffset("RespawnType");
|
|
return Get<EAthenaRespawnType>(RespawnTypeOffset);
|
|
}
|
|
|
|
static UClass* StaticClass()
|
|
{
|
|
static auto Class = FindObject<UClass>(L"/Script/FortniteGame.FortPlaylistAthena");
|
|
return Class;
|
|
}
|
|
}; |