View Javadoc

1   package net.sf.josceleton.motion.api.gesture;
2   
3   import java.util.Collection;
4   
5   import net.sf.josceleton.core.api.entity.joint.Joint;
6   
7   /**
8    * @since 0.4
9    */
10  public interface JointableGestureConfig
11  	extends GestureConfig {
12  
13  	/**
14  	 * @since 0.4
15  	 */
16  	Collection<Joint> getRelevantJoints();
17  	
18  }