mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-21 08:57:22 -05:00
10 lines
148 B
Protocol Buffer
Vendored
10 lines
148 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data.Battle;
|
|
|
|
enum BattleState {
|
|
STATE_UNSET = 0;
|
|
ACTIVE = 1;
|
|
VICTORY = 2;
|
|
DEFEATED = 3;
|
|
TIMED_OUT = 4;
|
|
} |