testing something, won't compile

This commit is contained in:
Master Kwoth
2017-10-19 14:10:22 +02:00
parent 9050291e85
commit fa0b9e4f80
3 changed files with 107 additions and 0 deletions

View File

@ -0,0 +1,22 @@
using NadekoBot.Common.Attributes;
using NadekoBot.Core.Modules.Gambling.Services;
using System.Threading.Tasks;
namespace NadekoBot.Modules.Gambling
{
public partial class Gambling
{
public class CurrencyRaffleCommands : NadekoSubmodule<CurrencyRaffleService>
{
[NadekoCommand, Usage, Description, Aliases]
public async Task RaffleCur(int amount)
{
if (_service.Games.TryAdd(Context.Channel.Id,
))
{
}
}
}
}
}