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

34
proto/VisionType.proto Normal file → Executable file
View File

@@ -3,19 +3,23 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
enum VisionType {
VisionNone = 0;
VisionMeet = 1;
VisionReborn = 2;
VisionReplace = 3;
VisionWaypointReborn = 4;
VisionMiss = 5;
VisionDie = 6;
VisionGatherEscape = 7;
VisionRefresh = 8;
VisionTransport = 9;
VisionReplaceDie = 10;
VisionReplaceNoNotify = 11;
VisionBorn = 12;
VisionPickup = 13;
VisionRemove = 14;
VISION_NONE = 0;
VISION_MEET = 1;
VISION_REBORN = 2;
VISION_REPLACE = 3;
VISION_WAYPOINT_REBORN = 4;
VISION_MISS = 5;
VISION_DIE = 6;
VISION_GATHER_ESCAPE = 7;
VISION_REFRESH = 8;
VISION_TRANSPORT = 9;
VISION_REPLACE_DIE = 10;
VISION_REPLACE_NO_NOTIFY = 11;
VISION_BORN = 12;
VISION_PICKUP = 13;
VISION_REMOVE = 14;
VISION_CHANGE_COSTUME = 15;
VISION_FISH_REFRESH = 16;
VISION_FISH_BIG_SHOCK = 17;
VISION_FISH_QTE_SUCC = 18;
}