Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Max()
[12/13]
static ulong System.Math.Max
(
ulong
val1
,
ulong
val2
)
inline
static
Definition at line
872
of file
Math.cs
.
873
{
874
if
(val1 < val2)
875
{
876
return
val2;
877
}
878
return
val1;
879
}
System
Math
Generated by
1.10.0