mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
8216d31568
It shouldn't force 1.5 compatibility but enable the CVAR.
28 lines
441 B
C
28 lines
441 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include "zstring.h"
|
|
|
|
struct FStartupInfo
|
|
{
|
|
FString Name;
|
|
uint32_t FgColor; // Foreground color for title banner
|
|
uint32_t BkColor; // Background color for title banner
|
|
FString Song;
|
|
int Type;
|
|
int LoadLights = -1;
|
|
int LoadBrightmaps = -1;
|
|
int modern = 0;
|
|
enum
|
|
{
|
|
DefaultStartup,
|
|
DoomStartup,
|
|
HereticStartup,
|
|
HexenStartup,
|
|
StrifeStartup,
|
|
};
|
|
};
|
|
|
|
|
|
extern FStartupInfo GameStartupInfo;
|
|
|