mirror of
https://github.com/Nan1t/NanoLimbo.git
synced 2026-02-13 20:36:14 +01:00
Added empty constructor for packet
This commit is contained in:
@@ -6,9 +6,11 @@ import ru.nanit.limbo.protocol.registry.Version;
|
|||||||
|
|
||||||
public class PacketSpawnPosition implements PacketOut {
|
public class PacketSpawnPosition implements PacketOut {
|
||||||
|
|
||||||
private final long x;
|
private long x;
|
||||||
private final long y;
|
private long y;
|
||||||
private final long z;
|
private long z;
|
||||||
|
|
||||||
|
public PacketSpawnPosition() { }
|
||||||
|
|
||||||
public PacketSpawnPosition(long x, long y, long z) {
|
public PacketSpawnPosition(long x, long y, long z) {
|
||||||
this.x = x;
|
this.x = x;
|
||||||
|
|||||||
Reference in New Issue
Block a user