16171819202122
@Override public SpawnPositionMessage decode(ChannelBuffer buffer) throws IOException { int x = buffer.readInt(); int y = buffer.readInt(); int z = buffer.readInt(); return new SpawnPositionMessage(x, y, z); }