summaryrefslogtreecommitdiff
path: root/DSALib/Auxiliary/Calculator/ISolvable.cs
blob: 7be4d1983d2944ed113072926b81a97bf24b6e60 (plain)
1
2
3
4
5
6
7
8
9
10
namespace DSACore.Auxiliary.Calculator
{
    /// <summary>
    ///     Object has to be able to return an integer as it's value
    /// </summary>
    public interface ISolvable
    {
        int Solve();
    }
}