This commit is contained in:
Paul Liverman
2015-04-11 01:23:58 -07:00
commit bac0fb6c9f
6 changed files with 23 additions and 0 deletions

BIN
images/bsg v1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
images/bsg v2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
images/viper.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

2
run src.bat Normal file
View File

@@ -0,0 +1,2 @@
@ECHO OFF
"C:\Program Files\LOVE\love.exe" "%cd%/src"

21
src/conf.lua Normal file
View File

@@ -0,0 +1,21 @@
local debug = true
function love.conf(t)
t.identity = "bsg"
t.version = "0.9.1"
if debug then t.console = true end
t.window = {}
t.window.title = "Battlestar Galactica, 33"
t.window.width = 960
t.window.height = 540
t.window.fullscreen = false
--t.window.borderless = true
t.window.resizable = false
--t.modules = {}
t.modules.joystick = false
t.modules.physics = false
end
return debug

0
src/main.lua Normal file
View File