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:
KingRainbow44
2023-03-31 23:58:12 -04:00
Unverified
parent 86aad96125
commit 262ee38ded
229 changed files with 6729 additions and 0 deletions
@@ -0,0 +1,14 @@
package emu.grasscutter.server.packet.send;
import emu.grasscutter.net.packet.BasePacket;
import emu.grasscutter.net.packet.PacketOpcodes;
import emu.grasscutter.net.proto.EndCameraSceneLookNotifyOuterClass.EndCameraSceneLookNotify;
public class PacketEndCameraSceneLookNotify extends BasePacket {
public PacketEndCameraSceneLookNotify() {
super(PacketOpcodes.EndCameraSceneLookNotify);
this.setData(EndCameraSceneLookNotify.newBuilder());
}
}