using System; namespace XMainClient { internal class XDropPackage { public uint money; public uint weapon_count; public uint armor_count; public void Reset() { this.money = 0u; this.weapon_count = 0u; this.armor_count = 0u; } } }