Files
OpenRA/OpenRa.FileFormats/Session.cs
Chris Forbes 88c085c1c0 lobby info hax
2010-01-14 21:42:18 +13:00

32 lines
554 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.FileFormats
{
public class Session
{
public List<Client> Clients = new List<Client>();
// todo: add mods, mapname, global settings here
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;
}
}
}