test new pipeline

This commit is contained in:
Steffen Illium
2023-10-20 15:38:27 +02:00
parent c3a1cb0cfa
commit 0083f027d2
3 changed files with 2 additions and 11 deletions
@@ -73,7 +73,7 @@ class Entity(EnvObject, abc.ABC):
print(f'Objects of {self.__class__.__name__} can not be bound to other entities.')
exit()
def summarize_state(self) -> dict: # tile=str(self.tile.name)
def summarize_state(self) -> dict:
return dict(name=str(self.name), x=int(self.x), y=int(self.y), can_collide=bool(self.var_can_collide))
@abc.abstractmethod