mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-05-12 06:56:02 +08:00
21 lines
718 B
Java
21 lines
718 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.EvtAvatarSitDownNotifyOuterClass.EvtAvatarSitDownNotify;
|
|
|
|
public class PacketEvtAvatarSitDownNotify extends GenshinPacket {
|
|
|
|
public PacketEvtAvatarSitDownNotify(EvtAvatarSitDownNotify notify) {
|
|
super(PacketOpcodes.EvtAvatarSitDownNotify);
|
|
|
|
EvtAvatarSitDownNotify proto = EvtAvatarSitDownNotify.newBuilder()
|
|
.setEntityId(notify.getEntityId())
|
|
.setPosition(notify.getPosition())
|
|
.setChairId(notify.getChairId())
|
|
.build();
|
|
|
|
this.setData(proto);
|
|
}
|
|
}
|