GC-Proto/proto/WidgetCreatorInfo.proto

12 lines
309 B
Protocol Buffer
Raw Normal View History

2023-02-28 06:08:38 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "WidgetCreatorOpType.proto";
import "WidgetCreateLocationInfo.proto";
2024-07-08 14:40:31 +03:00
// 4.7.0
// Obf: IGAMKCLFACP
2023-02-28 06:08:38 +03:00
message WidgetCreatorInfo {
2023-08-17 14:18:58 +03:00
uint32 entity_id = 15;
2024-07-08 14:40:31 +03:00
WidgetCreatorOpType op_type = 8;
WidgetCreateLocationInfo location_info = 4;
2023-02-28 06:08:38 +03:00
}