GC-Proto/proto/HomeBlueprintSlotInfo.proto

17 lines
316 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
// Name: EHFBOLNJEAC
2023-02-18 04:48:44 +03:00
message HomeBlueprintSlotInfo {
2023-02-28 04:12:44 +03:00
uint32 scene_id = 10;
uint32 create_time = 13;
uint32 slot_id = 12;
uint32 module_id = 4;
uint32 block_id = 11;
bool is_allow_copy = 5;
string share_code = 7;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00