View Javadoc

1   package net.sf.josceleton.motion.api.gesture.hitwall;
2   
3   import net.sf.josceleton.core.api.entity.XyzDirection;
4   import net.sf.josceleton.motion.api.gesture.JointableGestureConfig;
5   
6   /**
7    * @since 0.4
8    */
9   public interface HitWallConfig
10  	extends JointableGestureConfig {
11  
12  	/**
13  	 * @since 0.4
14  	 */
15  	XyzDirection getDirection();
16  
17  	/**
18  	 * @since 0.4
19  	 */
20  	float getCoordinate();
21  
22  	/**
23  	 * @since 0.4
24  	 */
25  	boolean getTriggerOnLower();
26  	
27  }