basic dedicated server support

This commit is contained in:
Igor Popov
2012-06-07 18:08:22 +04:00
committed by Chris Forbes
parent 03229eca0c
commit bf73cdbd01
4 changed files with 28 additions and 3 deletions

View File

@@ -34,6 +34,7 @@ namespace OpenRA.GameRules
public string Map = null;
public string[] Ban = null;
public int TimeOut = 0;
public bool Dedicated = false;
public ServerSettings() { }
@@ -49,6 +50,7 @@ namespace OpenRA.GameRules
Map = other.Map;
Ban = other.Ban;
TimeOut = other.TimeOut;
Dedicated = other.Dedicated;
}
}