mirror of
https://github.com/Nan1t/NanoLimbo.git
synced 2025-07-15 05:30:15 +02:00
Added empty constructor for packet
This commit is contained in:
parent
0af7a4c63d
commit
8210e61989
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user