blob: ec5e6076975670d01215a4736c6408610a0664f2 [file] [log] [blame] [raw]
package net.glowstone.msg;
public final class PlayNoteMessage extends Message {
private final int x, y, z, instrument, pitch;
public PlayNoteMessage(int x, int y, int z, int instrument, int pitch) {
this.x = x;
this.y = y;
this.z = z;
this.instrument = instrument;
this.pitch = pitch;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public int getZ() {
return z;
}
public int getInstrument() {
return instrument;
}
public int getPitch() {
return pitch;
}
}