Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Min()
[9/13]
static sbyte System.Math.Min
(
sbyte
val1
,
sbyte
val2
)
inline
static
Definition at line
987
of file
Math.cs
.
988
{
989
if
(val1 > val2)
990
{
991
return
val2;
992
}
993
return
val1;
994
}
System
Math
Generated by
1.10.0