Compare commits

...
3 Commits
Author SHA1 Message Date
Simon Kellet 407436f7f0 added love2d version for building 2024-07-21 13:46:55 +01:00
Simon Kellet 8a206de2a1 links 2024-07-21 13:46:42 +01:00
Simon Kellet 5830863a5f added windows build script 2024-07-21 13:46:32 +01:00
3 changed files with 11 additions and 4 deletions
+4 -4
View File
@@ -18,9 +18,9 @@ love game.love
## Credits
* Programming: Simon
* Art: Laura
* Music: AJ
* Programming: Simon [website](https://simonkellet.xyz)
* Art: Laura
* Music: AJ [website](https://sites.google.com/view/bitnailz)
# TODOS
@@ -28,7 +28,7 @@ love game.love
* [] Better music (for each level)
* [] Fill out menu screen
* [] Finally fix physics
* [] Make more maps (different lecel types)
* [] Make more maps (different level types)
* [] Fix player placement at start of game
## Git
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
set -xe
love=/Applications/love.app/Contents/MacOS/love
cat $love ./../game.love >./tanksalot.exe
+1
View File
@@ -3,4 +3,5 @@ function love.conf(t)
t.window.width = 1600
t.window.height = 960
t.window.title = "Tanks-A-Lot"
t.version = "11.5"
end