mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-06 21:19:25 +03:00
16 lines
292 B
Protocol Buffer
16 lines
292 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CityInfo.proto";
|
|
|
|
// CmdId: 251
|
|
// Name: LNAAFIHHCDN
|
|
message GetSceneAreaRsp {
|
|
uint32 scene_id = 11;
|
|
repeated uint32 area_id_list = 9;
|
|
repeated CityInfo city_info_list = 12;
|
|
int32 retcode = 2;
|
|
}
|
|
|