diff --git a/triple-dungeon/config.py b/triple-dungeon/config.py index 1bae98e..9ed6819 100644 --- a/triple-dungeon/config.py +++ b/triple-dungeon/config.py @@ -9,6 +9,7 @@ BASE_PATH = os.path.dirname(os.path.abspath(__file__)) RESOURCES = os.path.join(BASE_PATH, "resources") IMAGES = os.path.join(RESOURCES, "images") + class Config(object): """ A simple class dedicated to loading, storing and organizing constants. diff --git a/triple-dungeon/main.py b/triple-dungeon/main.py index 46b5d45..193a117 100644 --- a/triple-dungeon/main.py +++ b/triple-dungeon/main.py @@ -51,7 +51,7 @@ class Game(arcade.Window): self.floor_list = arcade.SpriteList() self.enemy_list = arcade.SpriteList() - # Set up the player, specifically placing it at these coordinates. + # Set up the player, specifically placing it at these coordinates. self.player = Player() self.player.scale = 1 self.player.center_x = Config.SCREEN_WIDTH / 2