mirror of
https://github.com/Melledy/Nebula.git
synced 2025-12-16 14:24:57 +01:00
22 lines
640 B
Java
22 lines
640 B
Java
package emu.nebula.server.handlers;
|
|
|
|
import emu.nebula.net.NetHandler;
|
|
import emu.nebula.net.NetMsgId;
|
|
import emu.nebula.proto.GachaNewbieObtain.GachaNewbieObtainReq;
|
|
import emu.nebula.net.HandlerId;
|
|
import emu.nebula.net.GameSession;
|
|
|
|
@HandlerId(NetMsgId.gacha_newbie_obtain_req)
|
|
public class HandlerGachaNewbieObtainReq extends NetHandler {
|
|
|
|
@Override
|
|
public byte[] handle(GameSession session, byte[] message) throws Exception {
|
|
@SuppressWarnings("unused")
|
|
var req = GachaNewbieObtainReq.parseFrom(message);
|
|
|
|
// TODO
|
|
return this.encodeMsg(NetMsgId.gacha_newbie_obtain_failed_ack);
|
|
}
|
|
|
|
}
|