mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-12 08:49:26 +03:00
14 lines
374 B
Protocol Buffer
14 lines
374 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
|
|
enum AGDCPKBNOGI {
|
|
SALVAGE_PREVENT_STOP_NONE = 0;
|
|
SALVAGE_PREVENT_STOP_SUCCESS = 1;
|
|
SALVAGE_PREVENT_STOP_ARRIVAL = 2;
|
|
SALVAGE_PREVENT_STOP_INTERRUPT = 3;
|
|
SALVAGE_PREVENT_STOP_LEAVE = 4;
|
|
SALVAGE_PREVENT_STOP_FULL = 5;
|
|
SALVAGE_PREVENT_STOP_AWAY = 6;
|
|
}
|