mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-13 11:03:37 +08:00
Create files from Grasscutter-Quests
these files are NOT directly compatible with Grasscutter, and require additional modifications to the codebase to work.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package emu.grasscutter.server.packet.send;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import emu.grasscutter.net.packet.BasePacket;
|
||||
import emu.grasscutter.net.packet.PacketOpcodes;
|
||||
import emu.grasscutter.net.proto.QuestDelNotifyOuterClass.QuestDelNotify;
|
||||
|
||||
public class PacketDelQuestNotify extends BasePacket {
|
||||
|
||||
public PacketDelQuestNotify(int questId) {
|
||||
super(PacketOpcodes.QuestDelNotify);
|
||||
|
||||
QuestDelNotify proto = QuestDelNotify.newBuilder()
|
||||
.setQuestId(questId)
|
||||
.build();
|
||||
|
||||
this.setData(proto);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user