diff --git a/dfhack/python/pydfapi.py b/dfhack/python/pydfapi.py new file mode 100644 index 000000000..f4bc0d12b --- /dev/null +++ b/dfhack/python/pydfapi.py @@ -0,0 +1,17 @@ +from pydfhack import * + +class API(_API): + def __init__(self, *args, **kwds): + _API.__init__(self, args, kwds) + +class Map(_MapManager): + def __init__(self, *args, **kwds): + _MapManager.__init__(self, args, kwds) + +class Vegetation(_VegetationManager): + def __init__(self, *args, **kwds): + _VegetationManager.__init__(self, args, kwds) + +class GUI(_GUIManager): + def __init__(self, *args, **kwds): + _GUIManager.__init__(self, args, kwds) \ No newline at end of file