Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Min()
[13/13]
static ushort System.Math.Min
(
ushort
val1
,
ushort
val2
)
inline
static
Definition at line
1016
of file
Math.cs
.
1017
{
1018
if
(val1 > val2)
1019
{
1020
return
val2;
1021
}
1022
return
val1;
1023
}
System
Math
Generated by
1.10.0