summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XDropPackage.cs
blob: ff4ec3be8aa0f95275b75e3edfdca9165bcce657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
		}
	}
}