|
|
@ -31,6 +31,7 @@ distribution.
|
|
|
|
#include "DF_Translate.cpp"
|
|
|
|
#include "DF_Translate.cpp"
|
|
|
|
#include "DF_Vegetation.cpp"
|
|
|
|
#include "DF_Vegetation.cpp"
|
|
|
|
#include "DF_Buildings.cpp"
|
|
|
|
#include "DF_Buildings.cpp"
|
|
|
|
|
|
|
|
#include "DF_Constructions.cpp"
|
|
|
|
#include "DF_API.cpp"
|
|
|
|
#include "DF_API.cpp"
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef PyMODINIT_FUNC
|
|
|
|
#ifndef PyMODINIT_FUNC
|
|
|
@ -92,6 +93,9 @@ PyMODINIT_FUNC initpydfhack(void)
|
|
|
|
if(PyType_Ready(&DF_Building_type) < 0)
|
|
|
|
if(PyType_Ready(&DF_Building_type) < 0)
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(PyType_Ready(&DF_Construction_type) < 0)
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
module = Py_InitModule3("pydfhack", module_methods, "pydfhack extension module");
|
|
|
|
module = Py_InitModule3("pydfhack", module_methods, "pydfhack extension module");
|
|
|
|
|
|
|
|
|
|
|
|
Py_INCREF(&DF_API_type);
|
|
|
|
Py_INCREF(&DF_API_type);
|
|
|
@ -112,6 +116,7 @@ PyMODINIT_FUNC initpydfhack(void)
|
|
|
|
PyModule_AddObject(module, "Translate", (PyObject*)&DF_Translate_type);
|
|
|
|
PyModule_AddObject(module, "Translate", (PyObject*)&DF_Translate_type);
|
|
|
|
PyModule_AddObject(module, "Vegetation", (PyObject*)&DF_Vegetation_type);
|
|
|
|
PyModule_AddObject(module, "Vegetation", (PyObject*)&DF_Vegetation_type);
|
|
|
|
PyModule_AddObject(module, "Building", (PyObject*)&DF_Building_type);
|
|
|
|
PyModule_AddObject(module, "Building", (PyObject*)&DF_Building_type);
|
|
|
|
|
|
|
|
PyModule_AddObject(module, "Construction", (PyObject*)&DF_Construction_type);
|
|
|
|
|
|
|
|
|
|
|
|
//DoImports();
|
|
|
|
//DoImports();
|
|
|
|
}
|
|
|
|
}
|