mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
15 lines
312 B
Protocol Buffer
15 lines
312 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "HomeBlueprintSlotInfo.proto";
|
|
|
|
// CmdId: 4781
|
|
// Name: JOPGJDMPLDN
|
|
message HomeGetBlueprintSlotInfoRsp {
|
|
repeated HomeBlueprintSlotInfo slot_info_list = 5;
|
|
repeated uint32 delete_slot_id_list = 11;
|
|
int32 retcode = 8;
|
|
}
|
|
|