public GreatStaff(WaponsModel model)
 {
     this.model = model;
     prefab     = model.greatStaff;
 }
 public SpellBook(WaponsModel model)
 {
     this.model = model;
     prefab     = model.spellBook;
 }
 public GreatSword(WaponsModel model)
 {
     this.model = model;
     prefab     = model.greatSword;
 }
Beispiel #4
0
 public Shield(WaponsModel model)
 {
     this.model = model;
     prefab     = model.shield;
 }
Beispiel #5
0
 public Dagger(WaponsModel model)
 {
     this.model = model;
     prefab     = model.dagger;
 }
Beispiel #6
0
 public Crossbow(WaponsModel model)
 {
     this.model = model;
     prefab     = model.crossbow;
 }
Beispiel #7
0
 public SmallSword(WaponsModel model)
 {
     this.model = model;
     prefab     = model.smallSword;
 }