18 lines
520 B
Python
18 lines
520 B
Python
|
#!/usr/bin/env python3
|
|||
|
# -*- coding: utf-8 -*-
|
|||
|
"""
|
|||
|
SUW Unit Face Tool - Python存根版本
|
|||
|
原文件: SUWUnitFaceTool.rb
|
|||
|
用途: 面工具,用于在面上创建单元
|
|||
|
"""
|
|||
|
|
|||
|
class SUWUnitFaceTool:
|
|||
|
"""SUWood面工具 - 存根版本"""
|
|||
|
|
|||
|
def __init__(self, spatial_pos: int, uid: str, mold: int):
|
|||
|
self.spatial_pos = spatial_pos
|
|||
|
self.uid = uid
|
|||
|
self.mold = mold
|
|||
|
print(f"🔧 创建面工具: 位置 {spatial_pos}, UID: {uid}")
|
|||
|
|
|||
|
print("📝 SUWUnitFaceTool存根版本已加载")
|