-
Notifications
You must be signed in to change notification settings - Fork 1
/
scoreImagesCollection.js
63 lines (62 loc) · 1.4 KB
/
scoreImagesCollection.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import fontBig0 from './assets/font_big_0.png'
import fontBig1 from './assets/font_big_1.png'
import fontBig2 from './assets/font_big_2.png'
import fontBig3 from './assets/font_big_3.png'
import fontBig4 from './assets/font_big_4.png'
import fontBig5 from './assets/font_big_5.png'
import fontBig6 from './assets/font_big_6.png'
import fontBig7 from './assets/font_big_7.png'
import fontBig8 from './assets/font_big_8.png'
import fontBig9 from './assets/font_big_9.png'
export default {
0: (() => {
const image = new Image()
image.src = fontBig0
return image
})(),
1: (() => {
const image = new Image()
image.src = fontBig1
return image
})(),
2: (() => {
const image = new Image()
image.src = fontBig2
return image
})(),
3: (() => {
const image = new Image()
image.src = fontBig3
return image
})(),
4: (() => {
const image = new Image()
image.src = fontBig4
return image
})(),
5: (() => {
const image = new Image()
image.src = fontBig5
return image
})(),
6: (() => {
const image = new Image()
image.src = fontBig6
return image
})(),
7: (() => {
const image = new Image()
image.src = fontBig7
return image
})(),
8: (() => {
const image = new Image()
image.src = fontBig8
return image
})(),
9: (() => {
const image = new Image()
image.src = fontBig9
return image
})(),
}