import type { StarLaserStatus } from './StarLaserStatus';

export interface StarLaserModuleStatus {
  starStatus: StarLaserStatus;
  laserStatus: StarLaserStatus;
  // ID of the kart that hit the star
  starHitByKartId: number | null;
  // ID of the kart that hit the laser
  laserHitByKartId: number | null;
}
