mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-12-05 03:03:31 +00:00
22 lines
767 B
Java
22 lines
767 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.EvtAvatarStandUpNotifyOuterClass.EvtAvatarStandUpNotify;
|
|
|
|
public class PacketEvtAvatarStandUpNotify extends BasePacket {
|
|
|
|
public PacketEvtAvatarStandUpNotify(EvtAvatarStandUpNotify notify) {
|
|
super(PacketOpcodes.EvtAvatarStandUpNotify);
|
|
|
|
EvtAvatarStandUpNotify proto = EvtAvatarStandUpNotify.newBuilder()
|
|
.setEntityId(notify.getEntityId())
|
|
.setDirection(notify.getDirection())
|
|
.setPerformID(notify.getPerformID())
|
|
.setChairId(notify.getChairId())
|
|
.build();
|
|
|
|
this.setData(proto);
|
|
}
|
|
}
|