Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Min()
[10/13]
static
short
System.Math.Min
(
short
val1
,
short
val2
)
inline
static
Definition at line
946
of file
Math.cs
.
947
{
948
if
(val1 > val2)
949
{
950
return
val2;
951
}
952
return
val1;
953
}
System
Math
Generated by
1.10.0