7 lines
260 B
Bash
7 lines
260 B
Bash
|
|
#!/bin/bash
|
||
|
|
#
|
||
|
|
# Chapter 8 loads a sprite from `ship.png`. The picture is not the point of the
|
||
|
|
# example, so any decodable image will do -- reuse the one tests/sprite_verbs.c
|
||
|
|
# already keeps.
|
||
|
|
cp "$(dirname "${BASH_SOURCE[0]}")/../assets/sprite8x8.png" ship.png
|