public Server(string address, ServerMachine machine) { Address = address; this.serverMachine = machine; this.serverState = new FailedState(this); }
internal FrozeState(Server server) : base(server, new Dictionary <int, IPadInt>()) { oldState = server.State; stateMessage = "FROZE STATE"; }