Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Max()
[5/13]
static int System.Math.Max
(
int
val1
,
int
val2
)
inline
static
Definition at line
786
of file
Math.cs
.
787
{
788
if
(val1 < val2)
789
{
790
return
val2;
791
}
792
return
val1;
793
}
System
Math
Generated by
1.10.0