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

◆ Max() [10/13]

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

Definition at line 776 of file Math.cs.

777 {
778 if (val1 < val2)
779 {
780 return val2;
781 }
782 return val1;
783 }