updated to add creature manager

develop
doomchild 2010-04-07 14:33:56 -05:00
parent 5ee28646dc
commit 3cfeb80692
1 changed files with 12 additions and 0 deletions

@ -26,6 +26,8 @@ distribution.
#include "DF_Imports.cpp"
#include "DF_MemInfo.cpp"
#include "DF_Material.cpp"
#include "DF_CreatureType.cpp"
#include "DF_CreatureManager.cpp"
#include "DF_API.cpp"
#ifndef PyMODINIT_FUNC
@ -72,17 +74,27 @@ PyMODINIT_FUNC initpydfhack(void)
if(PyType_Ready(&DF_Material_type) < 0)
return;
if(PyType_Ready(&DF_Creature_Base_type) < 0)
return;
if(PyType_Ready(&DF_CreatureManager_type) < 0)
return;
module = Py_InitModule3("pydfhack", module_methods, "pydfhack extension module");
Py_INCREF(&DF_API_type);
Py_INCREF(&DF_MemInfo_type);
Py_INCREF(&DF_Position_type);
Py_INCREF(&DF_Material_type);
Py_INCREF(&DF_Creature_Base_type);
Py_INCREF(&DF_CreatureManager_type);
PyModule_AddObject(module, "API", (PyObject*)&DF_API_type);
PyModule_AddObject(module, "MemInfo", (PyObject*)&DF_MemInfo_type);
PyModule_AddObject(module, "Position", (PyObject*)&DF_Position_type);
PyModule_AddObject(module, "Materials", (PyObject*)&DF_Material_type);
PyModule_AddObject(module, "Creature_Base", (PyObject*)&DF_Position_type);
PyModule_AddObject(module, "CreatureManager", (PyObject*)&DF_Material_type);
DoImports();
}