GC-Proto/proto/CookDataNotify.proto

14 lines
256 B
Protocol Buffer
Raw Normal View History

2023-08-22 20:23:37 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "CookRecipeData.proto";
2023-08-22 20:34:44 +03:00
// CmdId: 195
2023-08-22 20:23:37 +03:00
// EnetChannelId: 0
// EnetIsReliable: true
message CookDataNotify {
2023-08-22 20:34:44 +03:00
uint32 grade = 11;
2023-08-22 20:23:37 +03:00
repeated CookRecipeData recipe_data_list = 2;
}