blob: 702558db9f885787fbbc665a94df138056201acf (
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
}
}
|