mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-06 21:19:25 +03:00
15 lines
262 B
Protocol Buffer
15 lines
262 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "WidgetSlotTag.proto";
|
|
|
|
// Name: NOABONHBAJJ
|
|
message WidgetSlotData {
|
|
uint32 material_id = 11;
|
|
WidgetSlotTag tag = 5;
|
|
uint32 cd_over_time = 6;
|
|
bool is_active = 12;
|
|
}
|
|
|