diff world.py @ 189:4381be70e1bb tip

Fixed incompatibility with latest changes to bgrease.
author Beliar <KarstenBock@gmx.net>
date Sun, 08 Apr 2012 20:30:43 +0200
parents 2a12e2843984
children
line wrap: on
line diff
--- a/world.py	Tue Mar 27 13:41:20 2012 +0200
+++ b/world.py	Sun Apr 08 20:30:43 2012 +0200
@@ -9,8 +9,14 @@
 
 class PARPGWorld(World):
 
-    def __init__(self):
-        World.__init__(self)
+    def __init__(self, engine):
+        '''
+        Constructor
+        @param engine: Instance of the active fife engine
+        @type engine: fife.Engine
+        '''
+        World.__init__(self, engine)
+
         
     def configure(self):
         """Configure the game world's components, systems and renderers"""