mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 19:02:21 +01:00
fix some crashes on playlists when restarting, fix large team gamemode teams (kinda), added pickups to minimap
13 lines
243 B
C++
13 lines
243 B
C++
#pragma once
|
|
|
|
#include "FortPickup.h"
|
|
|
|
class AFortGameModePickup : public AFortPickup//Athena
|
|
{
|
|
public:
|
|
static UClass* StaticClass()
|
|
{
|
|
static auto Class = FindObject<UClass>("/Script/FortniteGame.FortGameModePickup");
|
|
return Class;
|
|
}
|
|
}; |