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