summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/UI/IWorldBossBattleSource.cs
blob: ff1b48e5b4064cb11febde478a0d39fd30a36635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace XMainClient.UI
{
	public interface IWorldBossBattleSource
	{
		uint EncourageCount { get; }

		void ReqEncourage();

		void ReqEncourageTwo();

		void ReqBattleInfo();

		uint GetEncourageCount(int index);
	}
}