NadekoBot/NadekoBot.Modules.Gambling/Common/CurrencyEvents/CurrencyEvent.cs

13 lines
289 B
C#
Raw Normal View History

2017-10-09 22:04:02 +00:00
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);
}
}