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

◆ Max() [6/13]

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

Definition at line 796 of file Math.cs.

797 {
798 if (val1 < val2)
799 {
800 return val2;
801 }
802 return val1;
803 }