summaryrefslogtreecommitdiff
path: root/dsa/DSALib/Auxiliary/Calculator/Ops.cs
blob: 93046d0e18256844c29ea39bd8ca84301fe7f503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace DSALibv.Auxiliary.Calculator
{
    /// <summary>
    ///     The Different Operations, witch can be performed in execution-order
    /// </summary>
    public enum Ops
    {
        Dice,
        Multiply,
        Subtract,
        Add
    }
}