Skip to content

Commit

Permalink
Implemented HandlerGetTreasureDungeonActivityDataCsReq
Browse files Browse the repository at this point in the history
  • Loading branch information
kostas214 committed Aug 24, 2024
1 parent 1dad907 commit 796d60c
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package emu.lunarcore.server.packet.recv;

import emu.lunarcore.server.game.GameSession;
import emu.lunarcore.server.packet.CmdId;
import emu.lunarcore.server.packet.Opcodes;
import emu.lunarcore.server.packet.PacketHandler;

@Opcodes(CmdId.GetTreasureDungeonActivityDataCsReq)
public class HandlerGetTreasureDungeonActivityDataCsReq extends PacketHandler {
@Override
public void handle(GameSession session, byte[] data) throws Exception {
session.send(CmdId.GetTreasureDungeonActivityDataScRsp);
}
}

0 comments on commit 796d60c

Please sign in to comment.