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

◆ Max() [9/13]

static sbyte System.Math.Max ( sbyte val1,
sbyte val2 )
inlinestatic

Definition at line 817 of file Math.cs.

818 {
819 if (val1 < val2)
820 {
821 return val2;
822 }
823 return val1;
824 }