source: trunk/src/org/expeditee/gio/gesture/GestureListener.java@ 1097

Last change on this file since 1097 was 1097, checked in by davidb, 6 years ago

Newly structured files from Corey's work on logic/graphics separation

File size: 239 bytes
Line 
1package org.expeditee.gio.gesture;
2
3public interface GestureListener {
4
5 /**
6 * What to do when the InputManager recognises a gesture.
7 *
8 * @param gesture
9 * The gesture performed.
10 */
11 public void onGesture(Gesture gesture);
12
13}
Note: See TracBrowser for help on using the repository browser.