summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/MCISoundCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'NET/worlds/scape/MCISoundCommand.java')
-rw-r--r--NET/worlds/scape/MCISoundCommand.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/NET/worlds/scape/MCISoundCommand.java b/NET/worlds/scape/MCISoundCommand.java
new file mode 100644
index 0000000..00bffcd
--- /dev/null
+++ b/NET/worlds/scape/MCISoundCommand.java
@@ -0,0 +1,14 @@
+package NET.worlds.scape;
+
+abstract class MCISoundCommand {
+ boolean isOnQueue;
+ float left;
+ float right;
+ int frameNum;
+
+ public abstract void run();
+
+ public void onQueue(boolean f) {
+ this.isOnQueue = f;
+ }
+}