CSGO-Projects/Shared/LoreSoft.MathExpressions/MathEvaluate.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

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);
}