diff --git a/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java b/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java index 3c755eedc..48018a7dc 100644 --- a/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java +++ b/engine/src/jbullet/com/jme3/bullet/control/RagdollControl.java @@ -1,5 +1,7 @@ package com.jme3.bullet.control; +import com.jme3.bullet.control.ragdoll.RagdollPreset; +import com.jme3.bullet.control.ragdoll.HumanoidRagdollPreset; import com.jme3.animation.AnimControl; import com.jme3.animation.Bone; import com.jme3.animation.Skeleton; diff --git a/engine/src/jbullet/com/jme3/bullet/control/HumanoidRagdollPreset.java b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/HumanoidRagdollPreset.java similarity index 98% rename from engine/src/jbullet/com/jme3/bullet/control/HumanoidRagdollPreset.java rename to engine/src/jbullet/com/jme3/bullet/control/ragdoll/HumanoidRagdollPreset.java index c3455760c..24e8b90b5 100644 --- a/engine/src/jbullet/com/jme3/bullet/control/HumanoidRagdollPreset.java +++ b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/HumanoidRagdollPreset.java @@ -2,7 +2,7 @@ * To change this template, choose Tools | Templates * and open the template in the editor. */ -package com.jme3.bullet.control; +package com.jme3.bullet.control.ragdoll; import com.jme3.math.FastMath; diff --git a/engine/src/jbullet/com/jme3/bullet/control/RagdollPreset.java b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/RagdollPreset.java similarity index 98% rename from engine/src/jbullet/com/jme3/bullet/control/RagdollPreset.java rename to engine/src/jbullet/com/jme3/bullet/control/ragdoll/RagdollPreset.java index 415b719fa..ad332ac1b 100644 --- a/engine/src/jbullet/com/jme3/bullet/control/RagdollPreset.java +++ b/engine/src/jbullet/com/jme3/bullet/control/ragdoll/RagdollPreset.java @@ -2,7 +2,7 @@ * To change this template, choose Tools | Templates * and open the template in the editor. */ -package com.jme3.bullet.control; +package com.jme3.bullet.control.ragdoll; import com.jme3.bullet.joints.SixDofJoint; import java.util.HashMap;