summaryrefslogtreecommitdiff
path: root/DiscoBot/Auxiliary/Calculator/Ops.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-07-17 21:18:59 +0200
committerTrueDoctor <d-kobert@web.de>2018-07-17 21:18:59 +0200
commit497a9eded3b785f7f96732c447943cc8bbad284b (patch)
tree87e40525b6d5173171597a0c8c288fd8d8e7f610 /DiscoBot/Auxiliary/Calculator/Ops.cs
parent496c9c32cb8d0d067e675855289904a22b05d9ac (diff)
Added object oriented dice resolving
Diffstat (limited to 'DiscoBot/Auxiliary/Calculator/Ops.cs')
-rw-r--r--DiscoBot/Auxiliary/Calculator/Ops.cs13
1 files changed, 13 insertions, 0 deletions
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
+{
+ /// <summary>
+ /// The Different Operations, witch can be performed in execution-order
+ /// </summary>
+ public enum Ops
+ {
+ Dice,
+ Multiply,
+ Subtract,
+ Add
+ }
+}