From 1694a9c43a898b50058dc2440a4a3916d8077d64 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 2 Jan 2010 02:21:05 -0800 Subject: [PATCH] forgot a file --- OpenRa.Game/GameRules/UserSettings.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 OpenRa.Game/GameRules/UserSettings.cs diff --git a/OpenRa.Game/GameRules/UserSettings.cs b/OpenRa.Game/GameRules/UserSettings.cs new file mode 100644 index 0000000000..2622ce9641 --- /dev/null +++ b/OpenRa.Game/GameRules/UserSettings.cs @@ -0,0 +1,21 @@ + +namespace OpenRa.Game.GameRules +{ + class UserSettings + { + public readonly bool UnitDebug = false; + public readonly bool BuildingDebug = false; + public readonly bool PathDebug = false; + public readonly int Timestep = 40; + public readonly string Replay = ""; + public readonly bool UseAftermath = false; + public readonly string NetworkHost = ""; + public readonly int NetworkPort = 0; + public readonly int SheetSize = 512; + public readonly bool Fullscreen = false; + public readonly string Map = "scm12ea.ini"; + public readonly int Player = 1; + public readonly int Width = 0; + public readonly int Height = 0; + } +}