NadekoBot/NadekoBot.Modules.Gambling/Common/CurrencyEvents/CurrencyEvent.cs
2017-10-10 00:04:02 +02:00

13 lines
289 B
C#

using Discord;
using Discord.Commands;
using System.Threading.Tasks;
namespace NadekoBot.Modules.Gambling.Common
{
public abstract class CurrencyEvent
{
public abstract Task Stop();
public abstract Task Start(IUserMessage msg, ICommandContext channel);
}
}