Skip to content

constants gamePlayState

abc edited this page Mar 27, 2023 · 1 revision

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
};
Clone this wiki locally