summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/WeekendPartyBattleRoleInfo.cs
blob: 5ef7536de07dc6a0af77d6cde40100e2d629b4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;

namespace XMainClient
{
	public class WeekendPartyBattleRoleInfo
	{
		public int Rank;

		public ulong roleID;

		public uint redBlue;

		public uint score;

		public uint kill;

		public uint beKilled;

		public string roleName;

		public int RoleProf;

		public uint level;
	}
}