RegexBot/Kerobot/Services/GuildState/Kerobot_hooks.cs

17 lines
407 B
C#
Raw Normal View History

using Kerobot.Services.GuildState;
using System;
namespace Kerobot
{
partial class Kerobot
{
private GuildStateService _svcGuildState;
/// <summary>
/// See <see cref="ModuleBase.GetGuildState{T}(ulong)"/>.
/// </summary>
internal T GetGuildState<T>(ulong guild, Type type)
=> _svcGuildState.RetrieveGuildStateObject<T>(guild, type);
}
}