lobby info hax

This commit is contained in:
Chris Forbes
2010-01-14 21:42:18 +13:00
parent 6184169408
commit 88c085c1c0
7 changed files with 178 additions and 103 deletions

View File

@@ -8,25 +8,24 @@ namespace OpenRa.FileFormats
public class Session
{
public List<Client> Clients = new List<Client>();
public string Map = "scm12ea.ini";
// public string[] Mods = { };
}
// todo: add mods, mapname, global settings here
public enum ClientState
{
NotReady,
// Downloading,
// Uploading,
Ready
}
public enum ClientState
{
NotReady,
// Downloading,
// Uploading,
Ready
}
public class Client
{
public int Index;
public int Palette;
public int Race;
// public int SpawnPoint;
public string Name;
public ClientState State;
public class Client
{
public int Index;
public int Palette;
public int Race;
// public int SpawnPoint;
public string Name;
public ClientState State;
}
}
}