добавление вспомогательных функций, исправление добавления всплывающего окна первого запуска

This commit is contained in:
2025-09-01 10:14:51 +03:00
parent f24cce328c
commit aff292fd8b
17 changed files with 159 additions and 40 deletions
+6
View File
@@ -0,0 +1,6 @@
import struct
def float_to_hex(f):
b = struct.pack(">f", f)
return b.hex()