Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Max()
[11/13]
static uint System.Math.Max
(
uint
val1
,
uint
val2
)
inline
static
Definition at line
861
of file
Math.cs
.
862
{
863
if
(val1 < val2)
864
{
865
return
val2;
866
}
867
return
val1;
868
}
System
Math
Generated by
1.10.0