1 package net.sf.josceleton.motion.impl.gesture.hitwall;
2
3 import net.sf.josceleton.motion.api.gesture.hitwall.HitWallConfig;
4 import net.sf.josceleton.motion.api.gesture.hitwall.HitWallGesture;
5
6 public interface HitWallGestureFactory {
7
8 HitWallGesture create(HitWallConfig config);
9
10 }