GC-Proto/proto/GetMapAreaRsp.proto

14 lines
236 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-02-28 06:08:38 +03:00
// Name: FDMHPADJFJP
// CmdId: 3458
2023-02-18 04:48:44 +03:00
message GetMapAreaRsp {
2023-02-28 06:08:38 +03:00
int32 retcode = 2;
repeated MapAreaInfo map_area_info_list = 1;
2023-02-18 04:48:44 +03:00
}
2023-02-28 06:08:38 +03:00