mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 21:47:39 +00:00
22 lines
455 B
Protocol Buffer
22 lines
455 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
enum ProtEntityType {
|
|
ProtEntityNone = 0;
|
|
ProtEntityAvatar = 1;
|
|
ProtEntityMonster = 2;
|
|
ProtEntityNpc = 3;
|
|
ProtEntityGadget = 4;
|
|
ProtEntityRegion = 5;
|
|
ProtEntityWeapon = 6;
|
|
ProtEntityWeather = 7;
|
|
ProtEntityScene = 8;
|
|
ProtEntityTeam = 9;
|
|
ProtEntityMassiveEntity = 10;
|
|
ProtEntityMpLevel = 11;
|
|
ProtEntityPlayTeamEntity = 12;
|
|
ProtEntityEyePoint = 13;
|
|
ProtEntityMax = 14;
|
|
}
|