Exemplo n.º 1
0
 public UserInterface(Universe u, Menu menu)
 {
     this.U    = u;
     this.Menu = menu;
 }
Exemplo n.º 2
0
 public Action(Universe u, string name, CelestialBody celestialBody)
 {
     this.U             = u;
     this.Name          = name;
     this.CelestialBody = celestialBody;
 }
Exemplo n.º 3
0
 public Action(Universe u, string name, List <Item> items)
 {
     this.U     = u;
     this.Name  = name;
     this.Items = items;
 }
Exemplo n.º 4
0
 public Action(Universe u, string name, Menu newMenu)
 {
     this.U       = u;
     this.Name    = name;
     this.NewMenu = newMenu;
 }
Exemplo n.º 5
0
 public Action(Universe u, string name)
 {
     this.U    = u;
     this.Name = name;
 }