mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
22 lines
535 B
Protocol Buffer
22 lines
535 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "GCGEndReason.proto";
|
|
import "GCGGameBusinessType.proto";
|
|
import "ItemParam.proto";
|
|
|
|
// CmdId: 7504
|
|
// Name: EAAHMIEAONL
|
|
message GCGSettleNotify {
|
|
uint32 game_id = 10;
|
|
bool is_win = 7;
|
|
repeated ItemParam reward_item_list = 15;
|
|
GCGGameBusinessType business_type = 2;
|
|
repeated uint32 finished_challenge_id_list = 12;
|
|
repeated uint32 forbid_finish_challenge_list = 11;
|
|
GCGEndReason reason = 1;
|
|
uint32 win_controller_id = 5;
|
|
}
|
|
|