added health sprite to the game
This commit is contained in:
parent
d21ccf3dc8
commit
ec8ced3958
5 changed files with 37 additions and 13 deletions
13
Makefile
13
Makefile
|
|
@ -3,6 +3,12 @@ REL_FOLDER=release_x64_win
|
|||
DEB_FOLDER=debug_x64_win
|
||||
BIN_FOLDER=./bin
|
||||
|
||||
run: build
|
||||
${BIN_FOLDER}/${EXE}.exe
|
||||
|
||||
run_rel: build_release
|
||||
${BIN_FOLDER}/${EXE}_rel.exe
|
||||
|
||||
build: clean
|
||||
odin build . -out:${BIN_FOLDER}/${EXE}.exe -debug
|
||||
|
||||
|
|
@ -19,10 +25,3 @@ package: build_release
|
|||
cp -r ./assets/ ${BIN_FOLDER}/${REL_FOLDER}/
|
||||
cp ${BIN_FOLDER}/${EXE}_rel.exe ${BIN_FOLDER}/${REL_FOLDER}/${EXE}.exe
|
||||
tar.exe -a -c -f ${BIN_FOLDER}/release_x64_win.zip ${BIN_FOLDER}/release_x64_win
|
||||
|
||||
run: build
|
||||
${BIN_FOLDER}/${EXE}.exe
|
||||
|
||||
run_rel: build_release
|
||||
${BIN_FOLDER}/${EXE}_rel.exe
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue