mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
17 lines
316 B
Protocol Buffer
17 lines
316 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: EHFBOLNJEAC
|
|
message HomeBlueprintSlotInfo {
|
|
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;
|
|
}
|
|
|