Trivia game cleanup

This commit is contained in:
Kwoth
2022-07-11 23:11:45 +00:00
parent ff779ad494
commit ea8e444b10
14 changed files with 494 additions and 444 deletions

View File

@@ -0,0 +1,6 @@
namespace NadekoBot.Modules.Games.Common.Trivia;
public interface IQuestionPool
{
Task<TriviaQuestion?> GetQuestionAsync();
}