Rewrite the !dice command from scratch
This commit is contained in:
parent
d7e313c9fa
commit
6d44960867
13 changed files with 376 additions and 126 deletions
13
Geekbot.net/Lib/DiceParser/DiceException.cs
Normal file
13
Geekbot.net/Lib/DiceParser/DiceException.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System;
|
||||
|
||||
namespace Geekbot.net.Lib.DiceParser
|
||||
{
|
||||
public class DiceException : Exception
|
||||
{
|
||||
public DiceException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public string DiceName { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue