mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-05-06 22:01:18 +00:00

* 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
15 lines
501 B
C#
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; }
|
|
}
|
|
}
|