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