export type BallShooterStatus =
  | 'Shooter Deactivated'
  | 'Shooter Preparing Engines'
  | 'Shooter Accelerating Engines'
  | 'Shooting Ball'
  | 'Unknown';
