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