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