mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-05-06 13:51:18 +00:00
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; }
|
|
}
|
|
}
|