2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2023-08-17 14:18:58 +03:00
|
|
|
import "OneoffGatherPointDetectorData.proto";
|
|
|
|
import "ClientCollectorData.proto";
|
2023-05-23 09:48:59 +03:00
|
|
|
import "WidgetCoolDownData.proto";
|
|
|
|
import "AnchorPointData.proto";
|
2023-08-17 14:18:58 +03:00
|
|
|
import "LunchBoxData.proto";
|
2023-05-23 09:48:59 +03:00
|
|
|
import "SkyCrystalDetectorData.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "WidgetSlotData.proto";
|
2023-08-17 14:18:58 +03:00
|
|
|
import "WeatherWizardData.proto";
|
2024-07-08 14:40:31 +03:00
|
|
|
// 4.7.0 TODO
|
2024-07-05 00:44:58 +03:00
|
|
|
// CmdId: 9546
|
|
|
|
// Obf: IFNFOADFFEL
|
2022-11-06 15:30:21 +03:00
|
|
|
message AllWidgetDataNotify {
|
2024-07-08 21:40:42 +03:00
|
|
|
repeated AnchorPointData anchor_point_list = 4; // OK
|
|
|
|
repeated OneoffGatherPointDetectorData oneoff_gather_point_detector_data_list = 14; // OK
|
|
|
|
repeated ClientCollectorData client_collector_data_list = 2; // ok
|
|
|
|
repeated WidgetCoolDownData normal_cool_down_data_list = 5; // OK
|
|
|
|
repeated WidgetCoolDownData group_cool_down_data_list = 8; // OK?
|
|
|
|
repeated WidgetSlotData slot_list = 1; // OK
|
|
|
|
LunchBoxData lunch_box_data = 15; // OK
|
|
|
|
WeatherWizardData weather_wizard_data = 3; // OK
|
|
|
|
SkyCrystalDetectorData sky_crystal_detector_data = 11; // OK
|
|
|
|
repeated uint32 background_active_widget_list = 555; // OR 9
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|