11 lines
217 B
Python
11 lines
217 B
Python
|
from .server import Server
|
||
|
|
||
|
|
||
|
class ScriptServer(Server):
|
||
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
|
||
|
def step(self):
|
||
|
for component in self._components:
|
||
|
component.func(component.parent)
|