constants gamePlayState - wxyz-abcd/node-haxball GitHub Wiki

GamePlayState

This type lets us understand the actual state of the game. This type only exists in a GameState object. Here is its current definition:

const GamePlayState = {
  BeforeKickOff: 0,
  Playing: 1,
  AfterGoal: 2,
  Ending: 3
};