GC-Proto/proto/GetMapAreaRsp.proto

14 lines
237 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "MapAreaInfo.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 3286
// Name: FDHEDLFKPHI
2023-02-18 04:48:44 +03:00
message GetMapAreaRsp {
2023-04-11 11:18:47 +03:00
int32 retcode = 1;
repeated MapAreaInfo map_area_info_list = 12;
2023-02-18 04:48:44 +03:00
}
2023-02-28 06:08:38 +03:00