コード例 #1
0
ファイル: Recipe.cs プロジェクト: gradalajage/swtor-crafting
 public Recipe(Ingredients inputs, Ingredient output)
     : this(output)
 {
     this.Inputs = inputs;
 }
コード例 #2
0
 public void AddChild(Ingredient ingredient)
 {
     ingredient.Parent = this;
     this.Children.AddIngredient(ingredient);
 }
コード例 #3
0
ファイル: Recipe.cs プロジェクト: gradalajage/swtor-crafting
 public Recipe(Ingredient output)
 {
     this.Output = output;
 }