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

19 lines
500 B
C#

namespace LoreSoft.MathExpressions
{
/// <summary>Math Operators</summary>
public enum MathOperators
{
/// <summary>Add Operator</summary>
Add,
/// <summary>Subtract Operator</summary>
Subtract,
/// <summary>Multiple Operator</summary>
Multiple,
/// <summary>Divide Operator</summary>
Divide,
/// <summary>Modulo Operator</summary>
Modulo,
/// <summary>Power Operator</summary>
Power
}
}