2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
import "Rotation.proto";
|
|
|
|
import "MapMarkPointType.proto";
|
|
|
|
import "MapMarkFromType.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
message MapMarkPoint {
|
2023-01-28 17:00:48 +03:00
|
|
|
uint32 sceneId = 1;
|
|
|
|
string createTime = 2;
|
|
|
|
Rotation pos = 3;
|
|
|
|
MapMarkPointType pointType = 4;
|
|
|
|
uint32 monsterId = 5;
|
|
|
|
MapMarkFromType fromType = 6;
|
|
|
|
uint32 questId = 7;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|