/src/org/mt4j/input/gestureAction/ICollisionAction.java
http://mt4j.googlecode.com/ · Java · 30 lines · 7 code · 5 blank · 18 comment · 0 complexity · e8d75fd29b43fd14fcf0c50dd36d86c5 MD5 · raw file
- package org.mt4j.input.gestureAction;
-
- import org.mt4j.input.inputProcessors.MTGestureEvent;
-
- /**
- * The Interface ICollisionAction.
- */
- public interface ICollisionAction {
-
- /**
- * Gesture aborted.
- *
- * @return true, if successful
- */
- public boolean gestureAborted();
-
- /**
- * Sets the gesture aborted.
- *
- * @param aborted the new gesture aborted
- */
- public void setGestureAborted(boolean aborted);
-
- /**
- * Gets the last event.
- *
- * @return the last event
- */
- public MTGestureEvent getLastEvent();
- }