mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
308 B
Protocol Buffer
17 lines
308 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "RoguelikeDungeonSettleInfo.proto";
|
|
|
|
// CmdId: 8451
|
|
// Name: OOHKNAIKHNK
|
|
message RoguelikeGiveUpRsp {
|
|
int32 retcode = 4;
|
|
uint32 stage_id = 9;
|
|
oneof info {
|
|
RoguelikeDungeonSettleInfo settle_info = 10;
|
|
}
|
|
}
|
|
|