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