Hangman Rewrite

This commit is contained in:
Kwoth
2021-09-27 02:00:19 +00:00
parent 68e96cd1bb
commit 486916944b
21 changed files with 2640 additions and 4835 deletions

View File

@@ -0,0 +1,14 @@
#nullable enable
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using NadekoBot.Services;
namespace NadekoBot.Modules.Games.Hangman
{
public interface IHangmanSource : INService
{
public IReadOnlyCollection<string> GetCategories();
public void Reload();
public bool GetTerm(string? category, [NotNullWhen(true)] out HangmanTerm? term);
}
}