コード例 #1
0
 protected abstract bool ConstructObject(ConstructionRecipe recipe);
コード例 #2
0
 public bool ConstructObjectFromRecipe(ConstructionRecipe recipe)
 {
     Console.WriteLine("Working hard to produce " + recipe.NameOfObject);
     return true;
 }
コード例 #3
0
 protected override bool ConstructObject(ConstructionRecipe recipe)
 {
     return _objectsConstructor.ConstructObjectFromRecipe(recipe);
 }