增加道具类

This commit is contained in:
Saipo 2025-04-27 12:04:10 +08:00 committed by JakelooCheng
parent bec42f1cc3
commit 80afdd8a2d

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