blob: 62c13094fd721363ad6f047573f260abb696d458 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
namespace DiscoBot.Auxiliary.Calculator
{
/// <summary>
/// The Different Operations, witch can be performed in execution-order
/// </summary>
public enum Ops
{
Dice,
Multiply,
Subtract,
Add
}
}
|