CSGO-Projects/Shared/LoreSoft.MathExpressions/IExpression.cs
MathiasL 50ac34fb28 Add hacky damage displayer (Will get refactored)
* Change Shared namespace to SteamShared
* Add damage displayer which also calculates, gets local weather and fuel prices
* API Key for tankerkoenig has to be supplied because I didn't push it
2022-05-20 22:20:45 +02:00

15 lines
501 B
C#

namespace LoreSoft.MathExpressions
{
/// <summary>
/// The interface used when running expressions
/// </summary>
public interface IExpression
{
/// <summary>Gets the number of arguments this expression uses.</summary>
/// <value>The argument count.</value>
int ArgumentCount { get; }
/// <summary>Gets or sets the evaluate delegate.</summary>
/// <value>The evaluate delegate.</value>
MathEvaluate Evaluate { get; set; }
}
}