aboutsummaryrefslogtreecommitdiff
path: root/src/org/happysanta/gd/Command.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/org/happysanta/gd/Command.java')
-rwxr-xr-xsrc/org/happysanta/gd/Command.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/org/happysanta/gd/Command.java b/src/org/happysanta/gd/Command.java
new file mode 100755
index 0000000..821ddc9
--- /dev/null
+++ b/src/org/happysanta/gd/Command.java
@@ -0,0 +1,11 @@
+package org.happysanta.gd;
+
+public class Command {
+
+ public String title;
+
+ public Command(String title, int unused1, int unused2) {
+ this.title = title;
+ }
+
+}