aboutsummaryrefslogtreecommitdiffstats
path: root/src/Images.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/Images.ts')
-rw-r--r--src/Images.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Images.ts b/src/Images.ts
index fce97ea..bf91bb3 100644
--- a/src/Images.ts
+++ b/src/Images.ts
@@ -63,6 +63,11 @@ export const IMGS = {
whiteStrangeRight: {} as HTMLImageElement,
planeIcon: {} as HTMLImageElement,
rollIcon: {} as HTMLImageElement,
+ startScreen0: {} as HTMLImageElement,
+ startScreen1: {} as HTMLImageElement,
+ startScreen2: {} as HTMLImageElement,
+ startScreen3: {} as HTMLImageElement,
+ startScreen4: {} as HTMLImageElement,
font: {
white: {} as any,
yellow: {} as any,
@@ -93,6 +98,7 @@ export default async function loadAllImages() {
IMGS.font[' '] = await asyncImageLoader("/src/imgs/font/ .png")
IMGS.font.yellow[' '] = await asyncImageLoader("/src/imgs/font/ .png")
IMGS.font.white[' '] = await asyncImageLoader("/src/imgs/font/ .png")
+ // Only numbers
for (const c of allChars.filter(ch => !alphabet.includes(ch))) {
IMGS.font.small.white[c] = await asyncImageLoader("/src/imgs/font/small/white/" + c + ".png");
}