@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
12 lines (11 loc) • 469 B
TypeScript
import type { DamageEffectName } from '../../damage';
import type { PowerUpName } from '../../powerUp';
import type { ScreenGameTimeLeft } from './ScreenGameTimeLeft';
import type { ScreenKartPosition } from './ScreenKartPosition';
export type ScreenViewBaseConfig = {
position?: ScreenKartPosition;
coins?: number | null;
gameTimeLeft?: ScreenGameTimeLeft;
powerUp?: PowerUpName | 'Clear PowerUp' | null;
damageEffect?: DamageEffectName | null;
};