mirror of
https://github.com/MathiasLui/CSGO-Projects.git
synced 2025-05-06 13:51:18 +00:00
7 lines
310 B
C#
7 lines
310 B
C#
namespace LoreSoft.MathExpressions
|
|
{
|
|
/// <summary>Delegate used by an expression to do the math evaluation.</summary>
|
|
/// <param name="numbers">The numbers to evaluate.</param>
|
|
/// <returns>The result of the evaluated numbers.</returns>
|
|
public delegate double MathEvaluate(double[] numbers);
|
|
}
|