synthetic value - protobuf-ts requires all enums to have a 0 value
Game has ended, can still request game info, but ready for a new game.
from protobuf enum value: ended = 5;
In a single or multiplayer game.
from protobuf enum value: in_game = 3;
In a replay.
from protobuf enum value: in_replay = 4;
Create game has been called, and the host is awaiting players.
from protobuf enum value: init_game = 2;
Game has been launch and is not yet doing anything.
from protobuf enum value: launched = 1;
Application is shutting down.
from protobuf enum value: quit = 6;
Should not happen, but indicates an error if it occurs.
from protobuf enum value: unknown = 99;
Generated using TypeDoc
Generated
from protobuf enum SC2APIProtocol.Status