2018-09-05 22:55:45 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Geekbot.net.Lib.Highscores
|
|
|
|
{
|
|
|
|
public interface IHighscoreManager
|
|
|
|
{
|
2019-05-12 17:57:03 +02:00
|
|
|
Dictionary<HighscoreUserDto, int> GetHighscoresWithUserData(HighscoreTypes type, ulong guildId, int amount);
|
2018-09-05 22:55:45 +02:00
|
|
|
Dictionary<ulong, int> GetMessageList(ulong guildId, int amount);
|
|
|
|
Dictionary<ulong, int> GetKarmaList(ulong guildId, int amount);
|
|
|
|
Dictionary<ulong, int> GetRollsList(ulong guildId, int amount);
|
|
|
|
}
|
|
|
|
}
|