11 lines
190 B
Python
11 lines
190 B
Python
from .server import Server
|
|
|
|
|
|
class PhysicsServer(Server):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def step(self):
|
|
for component in self._components:
|
|
pass
|