Files
tbd-station-14/Content.Shared/Maths/Rounders.cs

13 lines
220 B
C#

using System;
namespace Content.Shared.Maths
{
public static class Rounders
{
public static decimal RoundForReagents(this decimal me)
{
return Math.Round(me, 2);
}
}
}