mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-14 01:33:54 +08:00
Initial commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package emu.grasscutter.server.packet.send;
|
||||
|
||||
import emu.grasscutter.net.packet.GenshinPacket;
|
||||
import emu.grasscutter.net.packet.PacketOpcodes;
|
||||
import emu.grasscutter.net.proto.H5ActivityIdsNotifyOuterClass.H5ActivityIdsNotify;
|
||||
|
||||
public class PacketH5ActivityIdsNotify extends GenshinPacket {
|
||||
|
||||
public PacketH5ActivityIdsNotify() {
|
||||
super(PacketOpcodes.H5ActivityIdsNotify);
|
||||
|
||||
H5ActivityIdsNotify proto = H5ActivityIdsNotify.newBuilder()
|
||||
.build();
|
||||
|
||||
this.setData(proto);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user