diff skaapsteker/sprites/enemies.py @ 632:0675f390653c

Initial port to Python 3 and Pygame 2.
author Simon Cross <hodgestar@gmail.com>
date Fri, 20 Jan 2023 20:01:06 +0100
parents b7f912705adb
children
line wrap: on
line diff
--- a/skaapsteker/sprites/enemies.py	Tue Mar 17 22:40:45 2020 +0200
+++ b/skaapsteker/sprites/enemies.py	Fri Jan 20 20:01:06 2023 +0100
@@ -1,4 +1,4 @@
-from base import Monster, PatrollingMonster
+from .base import Monster, PatrollingMonster
 from pygame import transform
 
 
@@ -75,5 +75,3 @@
             self.heading = 'down'
         else:
             self.heading = 'up'
-
-