blob: c5288ea483a6d856f39a6dcb4317fa3935e1a3c9 [file] [log] [blame] [raw]
package net.glowstone.msg;
public final class SpawnVehicleMessage extends Message {
private final int id, type, x, y, z;
public SpawnVehicleMessage(int id, int type, int x, int y, int z) {
this.id = id;
this.type = type;
this.x = x;
this.y = y;
this.z = z;
}
public int getId() {
return id;
}
public int getType() {
return type;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public int getZ() {
return z;
}
}