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

◆ Abs() [7/8]

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

Definition at line 202 of file Math.cs.

203 {
204 if (value < 0)
205 {
206 value = (sbyte)(-value);
207 if (value < 0)
208 {
210 }
211 }
212 return value;
213 }
static void ThrowAbsOverflow()
Definition Math.cs:223

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