Q3D-Calibration/qdx/Block.py

11 lines
168 B
Python
Raw Normal View History

2022-07-08 21:21:48 +08:00
from .Bind import Bind
class Block(object):
binds = []
def __init__(self) -> None:
pass
def addBind(self, b: Bind):
self.binds.append(b)