mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
16 lines
263 B
Protocol Buffer
16 lines
263 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message HomeBlueprintSlotInfo {
|
|
bool isAllowCopy = 9;
|
|
uint32 createTime = 8;
|
|
uint32 sceneId = 3;
|
|
uint32 blockId = 2;
|
|
uint32 slotId = 12;
|
|
uint32 moduleId = 1;
|
|
string shareCode = 4;
|
|
}
|