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:
authorTon Roosendaal <ton@blender.org>2009-02-01 20:33:10 +0300
committerTon Roosendaal <ton@blender.org>2009-02-01 20:33:10 +0300
commitdf68580aeb945859e1fc97bc690c8b18c84d6690 (patch)
tree47a7eb77243bc13453fa4575edd20e817cbb2991 /source/blender/editors/include/ED_armature.h
parent494575fabf83372cce0ae7e87dc4656d8fa82dee (diff)
2.5
Preparing for volunteer to work on operatorifying armature code. Just new C file and calls to assign operators and keymaps.
Diffstat (limited to 'source/blender/editors/include/ED_armature.h')
-rw-r--r--source/blender/editors/include/ED_armature.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/editors/include/ED_armature.h b/source/blender/editors/include/ED_armature.h
index 556aac51e20..fdf953c7964 100644
--- a/source/blender/editors/include/ED_armature.h
+++ b/source/blender/editors/include/ED_armature.h
@@ -34,6 +34,7 @@ struct Base;
struct Bone;
struct bArmature;
struct bPoseChannel;
+struct wmWindowManager;
struct ListBase;
struct View3D;
@@ -85,6 +86,10 @@ typedef struct EditBone
#define BONE_SELECT_PARENT 0
#define BONE_SELECT_CHILD 1
+/* armature_ops.c */
+void ED_operatortypes_armature(void);
+void ED_keymap_armature(struct wmWindowManager *wm);
+
/* editarmature.c */
void ED_armature_from_edit(struct Scene *scene, struct Object *obedit);
void ED_armature_to_edit(struct Object *ob);
@@ -113,7 +118,6 @@ int ED_pose_channel_in_IK_chain(struct Object *ob, struct bPoseChannel *pchan);
void ED_pose_deselectall(struct Object *ob, int test, int doundo);
-
#endif /* ED_ARMATURE_H */