示例#1
0
文件: Item.cs 项目: noisyass2/fio
 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;
 }
示例#2
0
文件: Item.cs 项目: noisyass2/fio
 public Item(FIOCore.Etype etype, int amt) : this(etype, amt, 0, null, Etype.Constructor)
 {
 }
示例#3
0
文件: Item.cs 项目: noisyass2/fio
 public Item(FIOCore.Etype etype, int amt, int prod, Recipe recipe) : this(etype, amt, 0, recipe, Etype.Constructor)
 {
 }
示例#4
0
文件: Item.cs 项目: noisyass2/fio
 public Item(FIOCore.Etype etype, int amt, int prod) : this(etype, amt, prod, null)
 {
 }