* Split Object.c (created Object.h)

* Split Blender.c (created Blender.h)
* Followed a naming convention suggested by Willian for Modules and Classes.
* Implemented New, Get and GetSelected functions for the Object module.
* Implemented most of the attributes in the Get and Set functions for the
  Object module.
* Hopefully fixed a link error on OS X.
  Declared g_blenderdict externally in modules.h and moved the real
  declaration to Blender.c
This commit is contained in:
2003-04-21 20:33:06 +00:00
parent ec669df6ee
commit 788fa67bdf
5 changed files with 724 additions and 464 deletions

View File

@@ -38,7 +38,7 @@
/*****************************************************************************/
/* Global variables */
/*****************************************************************************/
PyObject *g_blenderdict;
extern PyObject *g_blenderdict;
void initBlender (void);
PyObject* initObject (void);