Files
nadekobot/src/NadekoBot/Modules/Games/Common/Hangman/IHangmanSource.cs
2021-09-27 02:00:19 +00:00

14 lines
405 B
C#

#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);
}
}