Added integration api to physics
[platform/core/uifw/dali-toolkit.git] / dali-physics / third-party / chipmunk2d / include / chipmunk / cpBody.h
index 8e46cc3..db7a9ea 100644 (file)
@@ -140,6 +140,11 @@ CP_EXPORT cpDataPointer cpBodyGetUserData(const cpBody *body);
 /// Set the user data pointer assigned to the body.
 CP_EXPORT void cpBodySetUserData(cpBody *body, cpDataPointer userData);
 
+/// Get the 2nd user data pointer assigned to the body.
+CP_EXPORT cpDataPointer cpBodyGetUserData2(const cpBody *body);
+/// Set the 2nd user data pointer assigned to the body.
+CP_EXPORT void cpBodySetUserData2(cpBody *body, cpDataPointer userData);
+
 /// Set the callback used to update a body's velocity.
 CP_EXPORT void cpBodySetVelocityUpdateFunc(cpBody *body, cpBodyVelocityFunc velocityFunc);
 /// Set the callback used to update a body's position.