mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
18 lines
377 B
Protocol Buffer
18 lines
377 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "WIDGET_EXTRA_CD_TYPE.proto";
|
|
import "WidgetCoolDownData.proto";
|
|
|
|
// CmdId: 5944
|
|
// Name: NDPCABCJAPA
|
|
message WidgetUpdateExtraCDRsp {
|
|
int32 retcode = 15;
|
|
uint32 cd_group = 5;
|
|
WidgetCoolDownData cool_data = 14;
|
|
uint32 material_id = 9;
|
|
WIDGET_EXTRA_CD_TYPE extra_cd_type = 8;
|
|
}
|
|
|