mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
16 lines
339 B
Protocol Buffer
16 lines
339 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "HomeSceneArrangementInfo.proto";
|
|
|
|
// CmdId: 4806
|
|
// Name: BIIGHBNLEOI
|
|
message HomeCreateBlueprintReq {
|
|
uint32 gen_share_code_count = 9;
|
|
string server_share_code = 4;
|
|
uint32 slot_id = 6;
|
|
HomeSceneArrangementInfo scene_arrangement_info = 13;
|
|
}
|
|
|