2020-04-23 19:18:40 +00:00
|
|
|
#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;
|
2021-04-13 15:08:04 +00:00
|
|
|
FString con;
|
2021-04-17 21:52:45 +00:00
|
|
|
FString def;
|
2020-04-23 19:18:40 +00:00
|
|
|
int Type;
|
|
|
|
int LoadLights = -1;
|
|
|
|
int LoadBrightmaps = -1;
|
2020-10-28 20:46:43 +00:00
|
|
|
int LoadWidescreen = -1;
|
2020-04-23 19:18:40 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
DefaultStartup,
|
|
|
|
DoomStartup,
|
|
|
|
HereticStartup,
|
|
|
|
HexenStartup,
|
|
|
|
StrifeStartup,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern FStartupInfo GameStartupInfo;
|
|
|
|
|