Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsHexLowerChar() [2/2]

static bool System.HexConverter.IsHexLowerChar ( int c)
inlinestatic

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 }