Update proto 3.3

This commit is contained in:
Akbar Yahya
2022-12-05 20:02:30 +08:00
parent 9b5321c106
commit 67789137ff
3726 changed files with 95316 additions and 5249 deletions

View File

@@ -22,23 +22,30 @@ import "ClientCollectorData.proto";
import "LunchBoxData.proto";
import "OneofGatherPointDetectorData.proto";
import "SkyCrystalDetectorData.proto";
import "WeatherWizardData.proto";
import "WidgetCoolDownData.proto";
import "WidgetSlotData.proto";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 4271
// EnetChannelId: 0
// EnetIsReliable: true
message AllWidgetDataNotify {
repeated uint32 background_active_widget_list = 11;
// enum CmdId {
// option allow_alias = true;
// NONE = 0;
// CMD_ID = 4286;
// ENET_CHANNEL_ID = 0;
// ENET_IS_RELIABLE = 1;
// }
uint32 next_anchor_point_usable_time = 5;
LunchBoxData lunch_box_data = 1;
repeated WidgetCoolDownData cool_down_group_data_list = 13;
repeated AnchorPointData anchor_point_list = 3;
repeated OneofGatherPointDetectorData oneof_gather_point_detector_data_list = 14;
repeated WidgetSlotData slot_list = 6;
uint32 next_anchor_point_usable_time = 10;
repeated ClientCollectorData client_collector_data_list = 4;
repeated OneofGatherPointDetectorData oneof_gather_point_detector_data_list = 15;
repeated WidgetCoolDownData normal_cool_down_data_list = 9;
SkyCrystalDetectorData sky_crystal_detector_data = 12;
repeated uint32 background_active_widget_list = 9;
repeated WidgetCoolDownData cool_down_group_data_list = 3;
SkyCrystalDetectorData sky_crystal_detector_data = 4;
repeated ClientCollectorData client_collector_data_list = 7;
WeatherWizardData weather_wizard_data = 15;
repeated WidgetCoolDownData normal_cool_down_data_list = 10;
repeated AnchorPointData anchor_point_list = 13;
}