Esempio n. 1
0
 public Cloth(IClothInitializer initializer, ClothItemFactory clothItemFactoryBase)
 {
     IsBroken  = initializer.IsBroken;
     IsCruised = initializer.IsCruised;
     this.ClothItemFactoryBase = clothItemFactoryBase;
 }
Esempio n. 2
0
 public Cloth(IClothInitializer initializer, ClothItemFactory clothItemFactory)
 {
     IsBroken              = initializer.IsBroken;
     IsCruised             = initializer.IsCruised;
     this.clothItemFactory = clothItemFactory;
 }
Esempio n. 3
0
 public Cloth(IClothInitializer initializer, ClothItemFactory clothItemFactory)
 {
     IsBroken = initializer.IsBroken;
     IsCruised = initializer.IsCruised;
     this.clothItemFactory = clothItemFactory;
 }