summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/BattleRecordGameInfo.cs
blob: 649760ae38cdc4867105a123bcc1abf12d7b17aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using KKSG;

namespace XMainClient.UI
{
	internal class BattleRecordGameInfo
	{
		public List<BattleRecordPlayerInfo> left = new List<BattleRecordPlayerInfo>();

		public List<BattleRecordPlayerInfo> right = new List<BattleRecordPlayerInfo>();

		public HeroBattleOver result;

		public int point2V2;

		public uint militaryExploit;
	}
}