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