forked from aduros/wasm4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarts.js
154 lines (153 loc) · 3.2 KB
/
carts.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
const CARTS = [
{
slug: "piano",
title: "Piano",
author: "pfg",
github: "pfgithub",
},
{
slug: "dodgeball",
title: "Dodgeball",
author: "Sander in 't Veld",
github: "sliv9",
},
{
slug: "racer",
title: "Racer",
author: "Claudio Mattera",
github: "claudiomattera",
},
{
slug: "miku-15",
title: "MIKU-15",
author: "Mr.Rafael",
github: "MrRafael-dev",
},
{
slug: "maze",
title: "Maze",
author: "Ben Smith",
github: "binji",
},
{
slug: "match3",
title: "Match3",
author: "Ben Smith",
github: "binji",
},
{
slug: "nyancat",
title: "Nyan Cat",
author: "Jake Ledoux",
github: "jakeledoux",
},
{
slug: "skipahead",
title: "Skip Ahead",
author: "Dennis Ranke",
github: "exoticorn",
},
{
slug: "endless-runner",
title: "Endless Runner",
author: "Richard McCormack",
github: "DenialAdams",
},
{
slug: "lakeshooter",
title: "Lake Shooter",
author: "Jimmy Cartrette",
github: "jimmycartrette",
},
{
slug: "minesweeper",
title: "Minesweeper",
author: "Claudio Mattera",
github: "claudiomattera",
},
{
slug: "game-of-life",
title: "Game of Life",
author: "Claudio Mattera",
github: "claudiomattera",
},
{
slug: "wormhole",
title: "Wormhole",
author: "David Sims",
github: "thedavesims",
},
{
slug: "meteoroids",
title: "Meteoroids",
author: "jzeiber",
github: "jzeiber",
},
{
slug: "2048",
title: "2048",
author: "Peter Hellberg",
github: "peterhellberg",
},
{
slug: "tictactoe",
title: "Tic Tac Toe",
author: "Christopher Kleine",
github: "christopher-kleine",
},
{
slug: "pong",
title: "Pong",
author: "Fabrizio Vitale",
github: "FaberVitale",
},
{
slug: "snake",
title: "Snake",
author: "Tomas Tulka",
github: "ttulka",
},
{
slug: "watris",
title: "Watris",
author: "Bruno Garcia",
github: "aduros",
},
{
slug: "platformer-test",
title: "Platformer Test",
author: "Bruno Garcia",
github: "aduros",
},
{
slug: "palette-previewer",
title: "Palette Previewer",
author: "David Sims",
github: "thedavesims",
},
{
slug: "mouse-demo",
title: "Mouse Demo",
author: "David Sims",
github: "thedavesims",
},
{
slug: "sound-demo",
title: "Sound Demo",
author: "Bruno Garcia",
github: "aduros",
},
{
slug: "raw-assembly",
title: "Raw Assembly Test",
author: "Bruno Garcia",
github: "aduros",
},
{
slug: "plasma-cube",
title: "Plasma Cube",
author: "unnick",
github: "kcinnu",
},
];
module.exports = CARTS;