2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
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 "MapMarkFromType.proto";
|
2023-02-28 06:08:38 +03:00
|
|
|
import "MapMarkPointType.proto";
|
|
|
|
import "Vector.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-04-11 11:18:47 +03:00
|
|
|
// Name: EDELLOCMJAG
|
2022-11-06 15:30:21 +03:00
|
|
|
message MapMarkPoint {
|
2023-02-28 06:08:38 +03:00
|
|
|
uint32 scene_id = 1;
|
|
|
|
string name = 2;
|
|
|
|
Vector pos = 3;
|
|
|
|
MapMarkPointType point_type = 4;
|
|
|
|
uint32 monster_id = 5;
|
|
|
|
MapMarkFromType from_type = 6;
|
|
|
|
uint32 quest_id = 7;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|