/**
 * Enum representing the different scoring bonuses
 */
enum ScoringBonus {
  WIN = 1,
  LOSS = 0,
  DRAW = 0.5
}

export { ScoringBonus }
