mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 16:09:25 +03:00
19 lines
361 B
Protocol Buffer
19 lines
361 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
|
|
|
|
import "Rotation.proto";
|
|
import "MapMarkPointType.proto";
|
|
import "MapMarkFromType.proto";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
message MapMarkPoint {
|
|
uint32 sceneId = 1;
|
|
string createTime = 2;
|
|
Rotation pos = 3;
|
|
MapMarkPointType pointType = 4;
|
|
uint32 monsterId = 5;
|
|
MapMarkFromType fromType = 6;
|
|
uint32 questId = 7;
|
|
}
|