mirror of
https://github.com/OMGeeky/pytiled_parser.git
synced 2026-01-19 00:56:32 +01:00
RESET
big time reset, we are not using TMX anymore, but instead using the JS format because it is way simpler to parse
This commit is contained in:
6
old_pytiled_parser/typing_helpers.py
Normal file
6
old_pytiled_parser/typing_helpers.py
Normal file
@@ -0,0 +1,6 @@
|
||||
def is_float(string: str):
|
||||
try:
|
||||
float(string)
|
||||
return True
|
||||
except (ValueError, TypeError):
|
||||
return False
|
||||
Reference in New Issue
Block a user