From 318f7881a1b1dc6ca02f2bdc3cd2980fd65258ab Mon Sep 17 00:00:00 2001 From: Marcin Kostrzewski Date: Mon, 6 Apr 2020 09:54:51 +0200 Subject: [PATCH] Fixed imports --- src/game/Game.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/game/Game.py b/src/game/Game.py index ddc760a..fed4dc4 100644 --- a/src/game/Game.py +++ b/src/game/Game.py @@ -3,13 +3,11 @@ import json from pathlib import Path from os import path -from game.EventManager import EventManager -from game.Screen import Screen -from game.Map import Map +from src.game.EventManager import EventManager +from src.game.Screen import Screen +from src.game.Map import Map -from src.entities.Pickupable import Pickupable from src.entities.Player import Player -from src.entities.Statistics import Statistics from src.game.Timer import Timer