14 lines
291 B
Protocol Buffer
14 lines
291 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "LunaRiteAreaInfo.proto";
|
|
import "LunaRiteHintPoint.proto";
|
|
|
|
// Name: AKGCFLIJKLA
|
|
message LunaRiteDetailInfo {
|
|
repeated LunaRiteHintPoint hint_point = 12;
|
|
repeated LunaRiteAreaInfo area_info_list = 3;
|
|
}
|
|
|