Exemplo n.º 1
0
 public Item(FIOCore.Etype etype, int amt, int prod, Recipe recipe, FIOCore.Etype machine)
 {
     this.Etype      = etype;
     this.Amount     = amt;
     this.Production = prod;
     this.Recipe     = recipe;
     this.Machine    = machine;
     this.Speed      = 5;
 }
Exemplo n.º 2
0
 public Item(FIOCore.Etype etype, int amt) : this(etype, amt, 0, null, Etype.Constructor)
 {
 }
Exemplo n.º 3
0
 public Item(FIOCore.Etype etype, int amt, int prod, Recipe recipe) : this(etype, amt, 0, recipe, Etype.Constructor)
 {
 }
Exemplo n.º 4
0
 public Item(FIOCore.Etype etype, int amt, int prod) : this(etype, amt, prod, null)
 {
 }