public LoginView(ASM asm) : base(asm) { type = ServerType.Login; state = State.Stopped; Text = type.ToString() + " - " + state.ToString(); }
public GameView(ASM asm) : base(asm) { type = ServerType.Game; state = State.Stopped; Text = type.ToString() + " - " + state.ToString(); }
public ServerView(ASM asm) { this.asm = asm; InitializeComponent(); }