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

◆ Abs() [4/8]

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

Definition at line 159 of file Math.cs.

160 {
161 if (value < 0)
162 {
163 value = -value;
164 if (value < 0)
165 {
167 }
168 }
169 return value;
170 }
static void ThrowAbsOverflow()
Definition Math.cs:223

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