コード例 #1
0
ファイル: Cloth.cs プロジェクト: jre08/DungeonMaster.NET
 public Cloth(IClothInitializer initializer, ClothItemFactory clothItemFactoryBase)
 {
     IsBroken  = initializer.IsBroken;
     IsCruised = initializer.IsCruised;
     this.ClothItemFactoryBase = clothItemFactoryBase;
 }
コード例 #2
0
 public Cloth(IClothInitializer initializer, ClothItemFactory clothItemFactory)
 {
     IsBroken              = initializer.IsBroken;
     IsCruised             = initializer.IsCruised;
     this.clothItemFactory = clothItemFactory;
 }
コード例 #3
0
ファイル: Cloth.cs プロジェクト: ggrrin/DungeonMaster
 public Cloth(IClothInitializer initializer, ClothItemFactory clothItemFactory)
 {
     IsBroken = initializer.IsBroken;
     IsCruised = initializer.IsCruised;
     this.clothItemFactory = clothItemFactory;
 }