Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Abs() [5/8]

static long System.Math.Abs ( long value)
inlinestatic

Definition at line 173 of file Math.cs.

174 {
175 if (value < 0)
176 {
177 value = -value;
178 if (value < 0)
179 {
181 }
182 }
183 return value;
184 }
static void ThrowAbsOverflow()
Definition Math.cs:223

References System.Math.ThrowAbsOverflow(), and System.value.