For easier viewing download the code on the my code page or copy and paste into your IDE.
namespace Capstone_Networking_Project_Test_0
{
interface INetwork_Utils
{
public const int MAX_CLIENTS = 8;
public const int PORT_NUM = 3949;
public const int TIMEOUT = 2500;
public const int SPEED = 0;
public const int TURN = 1;
public const int ENTER = 2;
public const int GET = 3;
public const int DISCONNECT = 4;
public const int LOC = 5;
public const int NEW_TRAIN = 6;
public const string NONE = "-";
public const string DELIM = ";";
public const int OPEN = 0;
public const int CLOSED_NORM = 1;
public const int CLOSED_REVERSE = 2;
}
}