import type { ObjectValues } from '../utils';

const POWER_UP_TYPE = {
  Damage: 'Damage',
  Shield: 'Shield',
  Speed: 'Speed',
} as const;

export type PowerUpType = ObjectValues<typeof POWER_UP_TYPE>;
