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

18
proto/PlayerDieType.proto Normal file → Executable file
View File

@@ -3,13 +3,13 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
enum PlayerDieType {
PlayerDieNone = 0;
PlayerDieKillByMonster = 1;
PlayerDieKillByGear = 2;
PlayerDieFall = 3;
PlayerDieDrawn = 4;
PlayerDieAbyss = 5;
PlayerDieGm = 6;
PlayerDieClimateCold = 7;
PlayerDieStormLighting = 8;
PLAYER_DIE_NONE = 0;
PLAYER_DIE_KILL_BY_MONSTER = 1;
PLAYER_DIE_KILL_BY_GEAR = 2;
PLAYER_DIE_FALL = 3;
PLAYER_DIE_DRAWN = 4;
PLAYER_DIE_ABYSS = 5;
PLAYER_DIE_GM = 6;
PLAYER_DIE_CLIMATE_COLD = 7;
PLAYER_DIE_STORM_LIGHTING = 8;
}