move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

13
proto/MapMarkPointType.proto Normal file → Executable file
View File

@@ -3,10 +3,11 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
enum MapMarkPointType {
Npc = 0;
Quest = 1;
Special = 2;
Mine = 3;
Collection = 4;
Monster = 5;
MAP_MARK_POINT_TYPE_NPC = 0;
MAP_MARK_POINT_TYPE_QUEST = 1;
MAP_MARK_POINT_TYPE_SPECIAL = 2;
MAP_MARK_POINT_TYPE_MINE = 3;
MAP_MARK_POINT_TYPE_COLLECTION = 4;
MAP_MARK_POINT_TYPE_MONSTER = 5;
MAP_MARK_POINT_TYPE_FISH_POOL = 6;
}