summaryrefslogtreecommitdiff
path: root/DSACore/Auxiliary/Calculator/ISolvable.cs
blob: 1f571d0347b701743e029ea91c8d64c560c90ebf (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();
    }
}