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