blob: e887170d1aa39194bc012408eb52c99a5365e210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace XMainClient.UI
{
internal interface IRankView
{
void RefreshPage();
bool IsVisible();
void RefreshVoice(ulong[] roleids, int[] states);
void HideVoice();
}
}
|