mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
10 lines
302 B
C#
10 lines
302 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
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);
|
|
} |