mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-12 06:56:02 +08:00
19 lines
548 B
Java
19 lines
548 B
Java
package emu.grasscutter.server.packet.send;
|
|
|
|
import emu.grasscutter.net.packet.BasePacket;
|
|
import emu.grasscutter.net.packet.PacketOpcodes;
|
|
import emu.grasscutter.net.proto.SceneEntityDrownRspOuterClass.SceneEntityDrownRsp;
|
|
|
|
public class PacketSceneEntityDrownRsp extends BasePacket {
|
|
|
|
public PacketSceneEntityDrownRsp(int entityId) {
|
|
super(PacketOpcodes.SceneEntityDrownRsp);
|
|
|
|
SceneEntityDrownRsp proto = SceneEntityDrownRsp.newBuilder().setEntityId(entityId).build();
|
|
|
|
this.setData(proto);
|
|
}
|
|
}
|
|
|
|
|