Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2006-03-18 17:47:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-03-18 17:47:26 +0300
commit7b37efb35f308bcd21ea78f1350f306a735c2290 (patch)
tree609796ec3f8c023e5d3ec3093c420946944792c6 /source/blender/python/api2_2x/Blender.c
parent148bc0a2e8e59d8d94f74597c599bd9646bf07ea (diff)
Added Blender.Group module
The plans for the new Python API are too far off to have this module conform. Needs testing with MSVC 6
Diffstat (limited to 'source/blender/python/api2_2x/Blender.c')
-rw-r--r--source/blender/python/api2_2x/Blender.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Blender.c b/source/blender/python/api2_2x/Blender.c
index f91a6604683..3796def5654 100644
--- a/source/blender/python/api2_2x/Blender.c
+++ b/source/blender/python/api2_2x/Blender.c
@@ -76,6 +76,7 @@ struct ID; /*keep me up here */
#include "Metaball.h"
#include "NMesh.h"
#include "Object.h"
+#include "Group.h"
#include "Registry.h"
#include "Scene.h"
#include "Sound.h"
@@ -862,6 +863,7 @@ void M_Blender_Init(void)
PyDict_SetItemString(dict, "NMesh", NMesh_Init());
PyDict_SetItemString(dict, "Noise", Noise_Init());
PyDict_SetItemString(dict, "Object", Object_Init());
+ PyDict_SetItemString(dict, "Group", Group_Init());
PyDict_SetItemString(dict, "Registry", Registry_Init());
PyDict_SetItemString(dict, "Scene", Scene_Init());
PyDict_SetItemString(dict, "Sound", Sound_Init());