mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
27 lines
1.0 KiB
C++
27 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include "inc.h"
|
|
|
|
namespace Globals
|
|
{
|
|
extern inline bool bCreative = false;
|
|
extern inline bool bGoingToPlayEvent = false;
|
|
extern inline bool bEnableAGIDs = false;
|
|
extern inline bool bNoMCP = true;
|
|
extern inline bool bLogProcessEvent = false;
|
|
extern inline bool bLateGame = false;
|
|
|
|
extern inline bool bHitReadyToStartMatch = false;
|
|
extern inline bool bInitializedPlaylist = false;
|
|
extern inline bool bStartedListening = false;
|
|
}
|
|
|
|
extern inline std::string PlaylistName =
|
|
"/Game/Athena/Playlists/Playlist_DefaultSolo.Playlist_DefaultSolo";
|
|
// "/Game/Athena/Playlists/gg/Playlist_Gg_Reverse.Playlist_Gg_Reverse";
|
|
// "/Game/Athena/Playlists/Playlist_DefaultDuo.Playlist_DefaultDuo";
|
|
// "/Game/Athena/Playlists/Playground/Playlist_Playground.Playlist_Playground";
|
|
// "/Game/Athena/Playlists/Carmine/Playlist_Carmine.Playlist_Carmine";
|
|
// "/Game/Athena/Playlists/Fill/Playlist_Fill_Solo.Playlist_Fill_Solo";
|
|
// "/Game/Athena/Playlists/Low/Playlist_Low_Solo.Playlist_Low_Solo";
|
|
// "/Game/Athena/Playlists/Bling/Playlist_Bling_Solo.Playlist_Bling_Solo";
|