added base type assignments

develop
doomchild 2010-04-21 14:58:17 -05:00
parent d148aeecc8
commit 662bb2291b
1 changed files with 4 additions and 0 deletions

@ -4,6 +4,10 @@ class API(_API):
def __init__(self, *args, **kwds): def __init__(self, *args, **kwds):
_API.__init__(self, args, kwds) _API.__init__(self, args, kwds)
self._map_mgr_type = Map
self._vegetation_mgr_type = Vegetation
self._gui_mgr_type = GUI
class Map(_MapManager): class Map(_MapManager):
def __init__(self, *args, **kwds): def __init__(self, *args, **kwds):
_MapManager.__init__(self, args, kwds) _MapManager.__init__(self, args, kwds)