mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
29 lines
442 B
C
29 lines
442 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 = -1;
|
||
|
enum
|
||
|
{
|
||
|
DefaultStartup,
|
||
|
DoomStartup,
|
||
|
HereticStartup,
|
||
|
HexenStartup,
|
||
|
StrifeStartup,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
|
||
|
extern FStartupInfo GameStartupInfo;
|
||
|
|