Deduplicated backgrounds to make the game smaller

This commit is contained in:
Renan LE CARO 2025-03-12 15:15:02 +01:00
parent 3b22980176
commit 752a5713d7
4 changed files with 168 additions and 146 deletions

2
src/types.d.ts vendored
View file

@ -6,7 +6,7 @@ export type RawLevel = {
name: string;
size: number;
bricks: string;
svg: string;
svg: number|null;
color: string;
};
export type Level = {