Always use predefined map in game unit tests

This commit is contained in:
Yohann D'ANELLO
2020-12-11 19:27:57 +01:00
parent 209bde5b5c
commit fb926f8c84
2 changed files with 7 additions and 1 deletions

View File

@ -54,6 +54,8 @@ class Map:
self.height = height
self.start_y = start_y
self.start_x = start_x
self.currenty = start_y
self.currentx = start_x
self.tiles = tiles
self.entities = []
self.logs = Logs()