Merge branch 'master' into develop

This commit is contained in:
JakelooCheng 2025-04-27 12:17:40 +08:00
commit 83be3a9579

9
Tool.py Normal file
View File

@ -0,0 +1,9 @@
class Tool:
id = 0
name = ""
typeid = 0
def __init__(self, id, name, typeid):
self.id = id
self.name = name
self.typeid = typeid