mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 19:26:49 +00:00
b392849577
* [BREAK] proto auto compiled by gradle * [BREAK] move proto to submodule * update gitmodules * [BREAK] move proto to submodule * move proto to submodule * fix merge conflict * fix github action after merging * fix merge conflicts and del submodule * upload the proto
26 lines
536 B
Protocol Buffer
Executable File
26 lines
536 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
enum VisionType {
|
|
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;
|
|
}
|