GC-Proto/proto/WidgetCreatorInfo.proto

13 lines
312 B
Protocol Buffer
Raw Normal View History

2023-02-28 06:08:38 +03:00
syntax = "proto3";
2024-08-28 12:09:22 +03:00
2023-02-28 06:08:38 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-08-28 12:09:22 +03:00
// Version: 5.0
import "WidgetCreateLocationInfo.proto";
2024-08-28 12:09:22 +03:00
import "WidgetCreatorOpType.proto";
message WidgetCreatorInfo {
WidgetCreateLocationInfo location_info = 2;
uint32 entity_id = 9;
WidgetCreatorOpType op_type = 12;
}