mirror of
https://gitlab.com/cc-ru/ocelot/ocelot-desktop.git
synced 2025-12-20 02:59:19 +01:00
10 lines
244 B
Bash
Executable File
10 lines
244 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if ! command -v spritepack &> /dev/null
|
|
then
|
|
echo "spritepack could not be found in the PATH variable!"
|
|
exit
|
|
fi
|
|
|
|
spritepack -s 512x512 -o ./src/main/resources/ocelot/desktop/images/spritesheet -n spritesheet ./sprites/
|