initial commit
This commit is contained in:
parent
3c9ee26b06
commit
22186c33b9
1458 changed files with 282792 additions and 0 deletions
51
java/src/game/packet/S36PacketSignEditorOpen.java
Executable file
51
java/src/game/packet/S36PacketSignEditorOpen.java
Executable file
|
@ -0,0 +1,51 @@
|
|||
package game.packet;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import game.network.NetHandlerPlayClient;
|
||||
import game.network.Packet;
|
||||
import game.network.PacketBuffer;
|
||||
import game.world.BlockPos;
|
||||
|
||||
public class S36PacketSignEditorOpen implements Packet<NetHandlerPlayClient>
|
||||
{
|
||||
private BlockPos signPosition;
|
||||
|
||||
public S36PacketSignEditorOpen()
|
||||
{
|
||||
}
|
||||
|
||||
public S36PacketSignEditorOpen(BlockPos signPositionIn)
|
||||
{
|
||||
this.signPosition = signPositionIn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Passes this Packet on to the NetHandler for processing.
|
||||
*/
|
||||
public void processPacket(NetHandlerPlayClient handler)
|
||||
{
|
||||
handler.handleSignEditorOpen(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reads the raw packet data from the data stream.
|
||||
*/
|
||||
public void readPacketData(PacketBuffer buf) throws IOException
|
||||
{
|
||||
this.signPosition = buf.readBlockPos();
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes the raw packet data to the data stream.
|
||||
*/
|
||||
public void writePacketData(PacketBuffer buf) throws IOException
|
||||
{
|
||||
buf.writeBlockPos(this.signPosition);
|
||||
}
|
||||
|
||||
public BlockPos getSignPosition()
|
||||
{
|
||||
return this.signPosition;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue