Skip to content

Commit

Permalink
Implemented HandlerGetTreasureDungeonActivityDataCsReq
Browse files Browse the repository at this point in the history
  • Loading branch information
kostas214 authored and Melledy committed Aug 26, 2024
1 parent e86f0b7 commit 8263beb
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 8263beb

Please sign in to comment.