diff --git a/triple-dungeon/main.py b/triple-dungeon/main.py index 3c5f5b9..635f3b7 100644 --- a/triple-dungeon/main.py +++ b/triple-dungeon/main.py @@ -46,6 +46,7 @@ class Game(arcade.Window): def setup(self): """ Set up the game here. Call this function to restart the game. """ # Create the Sprite lists + self.wall_list = arcade.SpriteList() self.floor_list = arcade.SpriteList() self.enemy_list = arcade.SpriteList()