Finish enemy and weapon customization, removal, Disable debug stuff, remove bottom movement, add set speed/size

This commit is contained in:
csd4ni3l
2025-06-19 21:50:05 +02:00
parent 613ff7eef7
commit a9c6f7dab4
8 changed files with 192 additions and 78 deletions

View File

@@ -70,3 +70,10 @@ class FakePyPresence():
...
def close(self, *args, **kwargs):
...
def is_float(string):
try:
float(string)
return True
except ValueError:
return False