summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/BattleIndicator.cs
blob: fa8dfe01cff3f6dc0f6716a5cc302035ed39bc02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using UILib;
using UnityEngine;
using XUtliPoolLib;

namespace XMainClient.UI
{
	internal struct BattleIndicator
	{
		public ulong id;

		public GameObject go;

		public IXUISprite sp;

		public Transform arrow;

		public IXUISprite leader;

		public XGameObject xGameObject;
	}
}