mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-27 00:49:25 +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";
|
|
|
|
// Name: DAOGBHIINPG
|
|
// CmdId: 4565
|
|
message HomeGetBlueprintSlotInfoRsp {
|
|
repeated uint32 delete_slot_id_list = 1;
|
|
int32 retcode = 8;
|
|
repeated HomeBlueprintSlotInfo slot_info_list = 13;
|
|
}
|
|
|