13 lines
220 B
C#
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);
|
|
}
|
|
}
|
|
}
|