-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwave.p8
More file actions
36 lines (33 loc) · 1.36 KB
/
Copy pathwave.p8
File metadata and controls
36 lines (33 loc) · 1.36 KB
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
pico-8 cartridge // http://www.pico-8.com
version 29
__lua__
function _init()
grid={}
for i=1,16,1 do
grid[i] = {}
for j=1,16,1 do
grid[i][j] = {1,2,3}
end
end
end
function _update()
end
function _draw()
cls()
for i=1,16,1 do
for j=1,16,1 do
if #grid[i][j]==1 then
spr(grid[i][j][1],(i-1)*8,(j-1)*8)
end
end
end
end
__gfx__
00000000333333333333333333333333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000333333333333333333333333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00700700333333333373333333338333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
000770003333333337a733333338a833000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00077000333333333373373333338333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
007007003333333333337a7333333333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000333333333333373333333333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000333333333333333333333333000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000