11 lines
168 B
Python
11 lines
168 B
Python
|
from .Bind import Bind
|
||
|
|
||
|
class Block(object):
|
||
|
binds = []
|
||
|
|
||
|
def __init__(self) -> None:
|
||
|
pass
|
||
|
|
||
|
def addBind(self, b: Bind):
|
||
|
self.binds.append(b)
|