mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-27 06:24:27 +00:00
14 lines
300 B
Protocol Buffer
14 lines
300 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
import "HomeSceneArrangementInfo.proto";
|
||
|
|
||
|
// CmdId: 4456
|
||
|
// EnetChannelId: 0
|
||
|
// EnetIsReliable: true
|
||
|
message HomeGetArrangementInfoRsp {
|
||
|
int32 retcode = 1;
|
||
|
repeated HomeSceneArrangementInfo scene_arrangement_info_list = 12;
|
||
|
}
|