Rewrite the !dice command from scratch

This commit is contained in:
runebaas 2020-06-21 03:33:05 +02:00
parent d7e313c9fa
commit 6d44960867
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
13 changed files with 376 additions and 126 deletions

View file

@ -0,0 +1,7 @@
namespace Geekbot.net.Lib.DiceParser
{
public struct DiceInputOptions
{
public bool ShowTotal { get; set; }
}
}