10 lines
265 B
Python
10 lines
265 B
Python
from domain.entities.entity import Entity
|
|
from domain.world import World
|
|
|
|
|
|
class Doc_Station(Entity):
|
|
def __init__(self, x: int, y: int):
|
|
super().__init__(x, y, "DOC_STATION")
|
|
self.power = True
|
|
|
|
# TODO Docing Station: add more properties |