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>2013-04-09 05:36:44 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-09 05:36:44 +0400
commit9e5a670b1d2285826bf33a177b32eb5862c771db (patch)
tree2a463556e2f8823e7e3561c36064df5c2600c84f /source/blender/editors/include/ED_physics.h
parent9eca407a18d8c0109d67fa4feed837dfe97d2de1 (diff)
code cleanup: abbreviations ob, con - aren't normally used in global identifiers.
Diffstat (limited to 'source/blender/editors/include/ED_physics.h')
-rw-r--r--source/blender/editors/include/ED_physics.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/include/ED_physics.h b/source/blender/editors/include/ED_physics.h
index cb793cfd9f6..584e9a92bb6 100644
--- a/source/blender/editors/include/ED_physics.h
+++ b/source/blender/editors/include/ED_physics.h
@@ -33,7 +33,7 @@
#define __ED_PHYSICS_H__
struct bContext;
-struct wmOperator;
+struct ReportList;
struct wmKeyConfig;
struct Scene;
@@ -45,12 +45,12 @@ int PE_hair_poll(struct bContext *C);
int PE_poll_view3d(struct bContext *C);
/* rigidbody_object.c */
-bool ED_rigidbody_ob_add(struct wmOperator *op, struct Scene *scene, struct Object *ob, int type);
-void ED_rigidbody_ob_remove(struct Scene *scene, struct Object *ob);
+bool ED_rigidbody_object_add(struct Scene *scene, struct Object *ob, int type, struct ReportList *reports);
+void ED_rigidbody_object_remove(struct Scene *scene, struct Object *ob);
/* rigidbody_constraint.c */
-void ED_rigidbody_con_add(struct wmOperator *op, struct Scene *scene, struct Object *ob, int type);
-void ED_rigidbody_con_remove(struct Scene *scene, struct Object *ob);
+bool ED_rigidbody_constraint_add(struct Scene *scene, struct Object *ob, int type, struct ReportList *reports);
+void ED_rigidbody_constraint_remove(struct Scene *scene, struct Object *ob);
/* operators */
void ED_operatortypes_physics(void);