Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Max()
[9/13]
static sbyte System.Math.Max
(
sbyte
val1
,
sbyte
val2
)
inline
static
Definition at line
817
of file
Math.cs
.
818
{
819
if
(val1 < val2)
820
{
821
return
val2;
822
}
823
return
val1;
824
}
System
Math
Generated by
1.10.0