示例#1
0
 public MainMenu(MonoNet game)
 {
     this.game = game;
 }
示例#2
0
 public ClientLevelScreen(MonoNet monoNet, IPEndPoint ip, string playerName) : base(monoNet)
 {
     this.ip         = ip;
     this.playerName = playerName;
 }
示例#3
0
 public DebugGameStartScreen(MonoNet monoNet)
 {
     this.monoNet = monoNet;
 }
示例#4
0
 public LevelScreen(MonoNet monoNet)
 {
     Instance     = this;
     this.monoNet = monoNet;
 }
示例#5
0
 public ServerLevelScreen(MonoNet monoNet, string name, int port) : base(monoNet)
 {
     this.port = port;
     Name      = name;
 }