LISTMENU "MainMenu"
{
	Size "Clean"
	StaticPatch 88, 0, "M_HTIC"
	StaticPatch 80, 100, "MENUBAK1"
	Position 114, 107
	Font "BIGFONT", "RED"
	TextItem "$MNU_NEWGAME", "n", "PlayerclassMenu"
	TextItem "$MNU_OPTIONS", "o", "OptionsMenu"
	TextItem "$MNU_GAMEFILES", "g", "GameFilesMenu"
	TextItem "$MNU_INFO", "i", "ReadThisMenu"
	TextItem "$MNU_QUITGAME", "q", "QuitMenu"
}

LISTMENU "EpisodeMenu"
{
	Size "Clean"
	Font "BIGFONT", "RED"
	NetgameMessage "$NEWGAME"
	Position 80, 50
}

LISTMENU "SkillMenu"
{
	Size "Clean"
	Font "BIGFONT", "RED"
	Position 38, 30
}

LISTMENU "GameFilesMenu"
{
	Size "Clean"
	Font "BIGFONT", "RED"
	Position 110, 60
	TextItem "$MNU_LOADGAME", "l", "LoadGameMenu"
	TextItem "$MNU_SAVEGAME", "s", "SaveGameMenu"
}

LISTMENU "LoadGameMenu"
{
	Font "BIGFONT", "RED"
	NetgameMessage "$LOADNET"
	StaticTextCentered 160, -10, "$MNU_LOADGAME"
	Position 80,54
	Class "LoadMenu"
}

LISTMENU "SaveGameMenu"
{
	Font "BIGFONT", "RED"
	StaticTextCentered 160, -10, "$MNU_SAVEGAME"
	Position 80,54
	Class "SaveMenu"
}

OptionMenu "OptionsMenu"
{
	Title "OPTIONS"
	Submenu "Brutal Heretic RPG Options",			"BHRPGOptions"
	StaticText " "
	Submenu "Customize Controls",		"CustomizeControls"
	Submenu "Mouse options",			"MouseOptions"
	Submenu "Joystick options",			"JoystickOptions"
	StaticText " "
	Submenu "Player Setup",				"PlayerMenu"
	Submenu "Gameplay Options",			"GameplayOptions"
	Submenu "Compatibility Options",	"CompatibilityOptions"
	Submenu "Automap Options",			"AutomapOptions"
	Submenu "HUD Options",				"HUDOptions"
	Submenu "Miscellaneous Options",	"MiscOptions"
	Submenu "Sound Options",			"SoundOptions"
	Submenu "Display Options",			"VideoOptions"
	Submenu "Set video mode",			"VideoModeMenu"
	StaticText " "
	SafeCommand "Reset to defaults",	"reset2defaults"
	SafeCommand	"Reset to last saved",	"reset2saved"
	Command "Go to console",			"menuconsole"
}
OptionMenu "BHRPGOptions"
{
  Title "Brutal Heretic RPG Options"
  StaticText " "
  Option "Decorational Effects", "bh_specialfx", "GraphicalSettings"
  Option "Color Scheme", "player_colorscheme", "MenuColor"
}
OptionValue "GraphicalSettings"
{
	0, "On"
	1, "Off"
}

OptionValue "MenuColor"
{
	0, "Red"
	1, "Blue"
	2, "Green"
	3, "Orange"
	4, "Yellow"
	5, "Cyan"
	6, "Dark Green"
	7, "Dark Red"
	8, "Gold"
	9, "Purple"
	10, "Olive"
}