source: trunk/src/org/expeditee/gio/input/InputEventListener.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: 196 bytes
Line 
1package org.expeditee.gio.input;
2
3public interface InputEventListener {
4
5 /**
6 * @return True to consume the event, false to let it pass.
7 */
8 public boolean onInputEvent(InputEvent event);
9
10}
Note: See TracBrowser for help on using the repository browser.