blob: 00bffcd1931a5a3558fc43a8381a73ac91dbbc84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}
}
|