mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
27ca71a6ec
This will be loaded on top of the regular .def files and not replace them.
30 lines
478 B
C
30 lines
478 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;
|
|
FString con;
|
|
FString def;
|
|
int Type;
|
|
int LoadLights = -1;
|
|
int LoadBrightmaps = -1;
|
|
int LoadWidescreen = -1;
|
|
enum
|
|
{
|
|
DefaultStartup,
|
|
DoomStartup,
|
|
HereticStartup,
|
|
HexenStartup,
|
|
StrifeStartup,
|
|
};
|
|
};
|
|
|
|
|
|
extern FStartupInfo GameStartupInfo;
|
|
|