15 lines
No EOL
514 B
C#
15 lines
No EOL
514 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using WingsAPI.Data.Character;
|
|
|
|
namespace WingsEmu.Game.Managers;
|
|
|
|
public interface IRankingManager
|
|
{
|
|
IReadOnlyList<CharacterDTO> TopCompliment { get; }
|
|
IReadOnlyList<CharacterDTO> TopPoints { get; }
|
|
IReadOnlyList<CharacterDTO> TopReputation { get; }
|
|
|
|
Task TryRefreshRanking();
|
|
void RefreshRanking(IReadOnlyList<CharacterDTO> topComplimented, IReadOnlyList<CharacterDTO> topPoints, IReadOnlyList<CharacterDTO> topReputation);
|
|
} |