Grasscutter/proto/CookDataNotify.proto

14 lines
255 B
Protocol Buffer
Raw Normal View History

2022-06-30 17:13:27 +08:00
syntax = "proto3";
2022-06-30 17:22:23 +08:00
option java_package = "emu.grasscutter.net.proto";
2022-06-30 17:13:27 +08:00
import "CookRecipeData.proto";
2022-06-30 17:22:23 +08:00
// CmdId: 142
// EnetChannelId: 0
// EnetIsReliable: true
2022-06-30 17:13:27 +08:00
message CookDataNotify {
2022-06-30 17:22:23 +08:00
uint32 grade = 8;
2022-06-30 17:13:27 +08:00
repeated CookRecipeData recipe_data_list = 2;
}