@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
13 lines (11 loc) • 460 B
text/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;
};