summary refs log tree commit diff stats
path: root/src/com/fourisland/fourpuzzle/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/fourisland/fourpuzzle/util')
-rw-r--r--src/com/fourisland/fourpuzzle/util/Inputable.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/com/fourisland/fourpuzzle/util/Inputable.java b/src/com/fourisland/fourpuzzle/util/Inputable.java new file mode 100644 index 0000000..9b108b9 --- /dev/null +++ b/src/com/fourisland/fourpuzzle/util/Inputable.java
@@ -0,0 +1,17 @@
1/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6package com.fourisland.fourpuzzle.util;
7
8import com.fourisland.fourpuzzle.KeyInput;
9
10/**
11 *
12 * @author hatkirby
13 */
14public interface Inputable {
15
16 public void processInput(KeyInput key);
17}