blob: 4dc6fbfdfb8fbe582784172b5f1f46fa6281d82d [file] [log] [blame] [raw]
package net.lightstone.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;
}
}