14 lines
261 B
Protocol Buffer
14 lines
261 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
option java_package = "emu.grasscutter.net.proto";
|
||
|
|
||
|
|
||
|
|
||
|
import "LunaRiteHintPoint.proto";
|
||
|
import "LunaRiteAreaInfo.proto";
|
||
|
|
||
|
message LunaRiteDetailInfo {
|
||
|
repeated LunaRiteHintPoint hintPoint = 8;
|
||
|
repeated LunaRiteAreaInfo areaInfoList = 9;
|
||
|
}
|