source: trunk/src/org/expeditee/gio/input/TimeoutInputEvent.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: 555 bytes
Line 
1package org.expeditee.gio.input;
2
3import org.expeditee.gio.TimeoutQueue.TimeoutHandle;
4
5/**
6 * Type of input event where the user can set a timer and
7 * receive an input event when the timer expires.
8 *
9 * @author cts16
10 *
11 * TODO: Revise above comment. cts16
12 * TODO: Complete. cts16
13 */
14public class TimeoutInputEvent extends InputEvent {
15
16 private TimeoutHandle _handle;
17
18 public TimeoutInputEvent(TimeoutHandle handle)
19 {
20 super(InputEvent.InputType.TIMEOUT);
21 _handle = handle;
22 }
23
24 public TimeoutHandle getHandle()
25 {
26 return _handle;
27 }
28
29}
Note: See TracBrowser for help on using the repository browser.