Grasscutter/proto/GetSceneAreaRsp.proto

13 lines
237 B
Protocol Buffer
Raw Normal View History

2022-04-17 12:43:07 +00:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "CityInfo.proto";
message GetSceneAreaRsp {
int32 retcode = 1;
uint32 sceneId = 2;
repeated uint32 areaIdList = 3;
repeated CityInfo cityInfoList = 4;
}