mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-12-05 01:45:29 +00:00
17 lines
453 B
Java
17 lines
453 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.GetAuthkeyRspOuterClass.GetAuthkeyRsp;
|
||
|
|
||
|
public class PacketGetAuthkeyRsp extends GenshinPacket {
|
||
|
|
||
|
public PacketGetAuthkeyRsp() {
|
||
|
super(PacketOpcodes.GetAuthkeyRsp);
|
||
|
|
||
|
GetAuthkeyRsp proto = GetAuthkeyRsp.newBuilder().setRetcode(1).build();
|
||
|
|
||
|
this.setData(proto);
|
||
|
}
|
||
|
}
|