GC-Proto/proto/LunaRiteHintPoint.proto

16 lines
290 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "LunaRiteHintPointType.proto";
2023-02-28 04:12:44 +03:00
import "Vector.proto";
2023-04-11 06:14:48 +03:00
// Name: NKMCNBPFMBJ
2022-11-06 15:30:21 +03:00
message LunaRiteHintPoint {
2023-04-11 06:14:48 +03:00
LunaRiteHintPointType type = 5;
uint32 index = 1;
uint32 area_id = 14;
Vector pos = 10;
2022-11-06 15:30:21 +03:00
}
2023-02-28 04:12:44 +03:00