Start hacking on a server traits model

This commit is contained in:
Paul Chote
2010-11-08 13:46:03 +13:00
parent 38486e8184
commit a98d20ea72
2 changed files with 23 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ using System.Net.Sockets;
namespace OpenRA.Server
{
class Connection
public class Connection
{
public Socket socket;
public List<byte> data = new List<byte>();
@@ -93,5 +93,5 @@ namespace OpenRA.Server
}
}}
enum ReceiveState { Header, Data };
public enum ReceiveState { Header, Data };
}