Compare commits
2 commits
d4c537e6ab
...
c03c74f472
Author | SHA1 | Date | |
---|---|---|---|
|
c03c74f472 | ||
|
c4df46178f |
5 changed files with 5 additions and 1 deletions
BIN
assets/tiles/blank.png
Normal file
BIN
assets/tiles/blank.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 350 B |
BIN
assets/tiles/bricks-light.png
Normal file
BIN
assets/tiles/bricks-light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 288 B |
BIN
assets/tiles/door-light.png
Normal file
BIN
assets/tiles/door-light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 321 B |
BIN
assets/tiles/floor-light.png
Normal file
BIN
assets/tiles/floor-light.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 350 B |
6
game.scm
6
game.scm
|
@ -60,7 +60,11 @@
|
|||
(barrel . ,(make-image "assets/sprites/barrel.png"))
|
||||
(bricks . ,(make-image "assets/sprites/bricks.png"))
|
||||
(stones . ,(make-image "assets/sprites/stones.png"))
|
||||
(card-back . ,(make-image "assets/sprites/bricks.png"))))
|
||||
(card-back . ,(make-image "assets/sprites/bricks.png"))
|
||||
(tile-blank . ,(make-image "assets/tiles/blank.png"))
|
||||
(tile-floor . ,(make-image "assets/tiles/floor-light.png"))
|
||||
(tile-wall . ,(make-image "assets/tiles/bricks-light.png"))
|
||||
(tile-door . ,(make-image "assets/tiles/door-light.png"))))
|
||||
|
||||
(parameterize ((*logger* #f))
|
||||
(parameterize ((*media-library* (create-media-library)))
|
||||
|
|
Loading…
Reference in a new issue