Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
IsHexLowerChar()
[2/2]
static
bool
System.HexConverter.IsHexLowerChar
(
int
c
)
inline
static
Definition at line
212
of file
HexConverter.cs
.
213
{
214
if
((uint)(c - 48) > 9u)
215
{
216
return
(uint)(c - 97) <= 5u;
217
}
218
return
true
;
219
}
System
HexConverter
Generated by
1.10.0