Esempio n. 1
0
 public DataWeapon(uint characterid)
 {
     owner = characterid;
     collection = new WeaponCollection();
 }
Esempio n. 2
0
 public DataWeapon(uint characterid, WeaponCollection weapons)
 {
     owner = characterid;
     collection = weapons;
 }
Esempio n. 3
0
 public DataWeapon(Character target)
 {
     owner = target.ModelId;
     collection = target.weapons;
 }