测试变量作用域 #3

Merged
saipo merged 8 commits from develop into master 2025-04-28 20:35:59 +08:00
Showing only changes of commit 83be3a9579 - Show all commits

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