From 497a9eded3b785f7f96732c447943cc8bbad284b Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Tue, 17 Jul 2018 21:18:59 +0200 Subject: Added object oriented dice resolving --- DiscoBot/Auxiliary/Calculator/Ops.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 DiscoBot/Auxiliary/Calculator/Ops.cs (limited to 'DiscoBot/Auxiliary/Calculator/Ops.cs') diff --git a/DiscoBot/Auxiliary/Calculator/Ops.cs b/DiscoBot/Auxiliary/Calculator/Ops.cs new file mode 100644 index 0000000..62c1309 --- /dev/null +++ b/DiscoBot/Auxiliary/Calculator/Ops.cs @@ -0,0 +1,13 @@ +namespace DiscoBot.Auxiliary.Calculator +{ + /// + /// The Different Operations, witch can be performed in execution-order + /// + public enum Ops + { + Dice, + Multiply, + Subtract, + Add + } +} -- cgit v1.2.3-54-g00ecf