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

◆ Max() [13/13]

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

Definition at line 850 of file Math.cs.

851 {
852 if (val1 < val2)
853 {
854 return val2;
855 }
856 return val1;
857 }