コード例 #1
0
 public DataWeapon(uint characterid)
 {
     owner = characterid;
     collection = new WeaponCollection();
 }
コード例 #2
0
 public DataWeapon(uint characterid, WeaponCollection weapons)
 {
     owner = characterid;
     collection = weapons;
 }
コード例 #3
0
 public DataWeapon(Character target)
 {
     owner = target.ModelId;
     collection = target.weapons;
 }