mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
357 B
Protocol Buffer
17 lines
357 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "LunaRiteHintPoint.proto";
|
|
import "LunaRiteHintStatusType.proto";
|
|
|
|
// CmdId: 8822
|
|
// Name: JBGDFBKCNFH
|
|
message LunaRiteHintPointRsp {
|
|
repeated LunaRiteHintPoint hint_point = 11;
|
|
uint32 area_id = 7;
|
|
LunaRiteHintStatusType hint_status = 12;
|
|
int32 retcode = 13;
|
|
}
|
|
|