diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/UI/IWorldBossBattleView.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/UI/IWorldBossBattleView.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/UI/IWorldBossBattleView.cs b/Client/Assets/Scripts/XMainClient/UI/IWorldBossBattleView.cs new file mode 100644 index 00000000..73b737dc --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/UI/IWorldBossBattleView.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient.UI
+{
+ internal interface IWorldBossBattleView
+ {
+ void SetLeftTime(uint time);
+
+ void RefreshEncourage();
+
+ bool IsVisible();
+ }
+}
|