mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-11 23:05:27 +08:00
Format code [skip actions]
This commit is contained in:
+18
-18
@@ -1,18 +1,18 @@
|
||||
package emu.grasscutter.server.packet.send;
|
||||
|
||||
import emu.grasscutter.net.packet.BasePacket;
|
||||
import emu.grasscutter.net.packet.PacketOpcodes;
|
||||
import emu.grasscutter.net.proto.DungeonShowReminderNotifyOuterClass;
|
||||
|
||||
public class PacketDungeonShowReminderNotify extends BasePacket {
|
||||
|
||||
public PacketDungeonShowReminderNotify(int reminderId) {
|
||||
super(PacketOpcodes.DungeonShowReminderNotify);
|
||||
|
||||
var proto = DungeonShowReminderNotifyOuterClass.DungeonShowReminderNotify.newBuilder();
|
||||
|
||||
proto.setReminderId(reminderId);
|
||||
|
||||
this.setData(proto);
|
||||
}
|
||||
}
|
||||
package emu.grasscutter.server.packet.send;
|
||||
|
||||
import emu.grasscutter.net.packet.BasePacket;
|
||||
import emu.grasscutter.net.packet.PacketOpcodes;
|
||||
import emu.grasscutter.net.proto.DungeonShowReminderNotifyOuterClass;
|
||||
|
||||
public class PacketDungeonShowReminderNotify extends BasePacket {
|
||||
|
||||
public PacketDungeonShowReminderNotify(int reminderId) {
|
||||
super(PacketOpcodes.DungeonShowReminderNotify);
|
||||
|
||||
var proto = DungeonShowReminderNotifyOuterClass.DungeonShowReminderNotify.newBuilder();
|
||||
|
||||
proto.setReminderId(reminderId);
|
||||
|
||||
this.setData(proto);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user