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
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 219 B

+2
View File
@@ -0,0 +1,2 @@
@ECHO OFF
"C:\Program Files\LOVE\love.exe" "%cd%/src"
+21
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
View File