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