mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-16 14:23:28 +08:00
19 lines
554 B
Java
19 lines
554 B
Java
package emu.grasscutter.server.packet.send;
|
|
|
|
import emu.grasscutter.net.packet.GenshinPacket;
|
|
import emu.grasscutter.net.packet.PacketOpcodes;
|
|
import emu.grasscutter.net.proto.SceneEntityDrownRspOuterClass.SceneEntityDrownRsp;
|
|
|
|
public class PacketSceneEntityDrownRsp extends GenshinPacket {
|
|
|
|
public PacketSceneEntityDrownRsp(int entityId) {
|
|
super(PacketOpcodes.SceneEntityDrownRsp);
|
|
|
|
SceneEntityDrownRsp proto = SceneEntityDrownRsp.newBuilder().setEntityId(entityId).build();
|
|
|
|
this.setData(proto);
|
|
}
|
|
}
|
|
|
|
|