Ejemplo n.º 1
0
 public abstract void Transition(ref IWorld <T> world);
Ejemplo n.º 2
0
 public override void Transition(ref IWorld <T> world)
 {
     world = new InGame <T>((Lobby <T>)world, CreateTeams(Players));
 }
Ejemplo n.º 3
0
 public override void Transition(ref IWorld <T> lobby)
 {
     throw new NotImplementedException();
 }