summaryrefslogtreecommitdiff
path: root/DSACore/Auxiliary/Calculator/Ops.cs
blob: c804257a36888c220a5a76bf48bdcd3145573065 (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
    }
}