|
|
@ -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)
|
|
|
|