We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095b0bf commit a86b660Copy full SHA for a86b660
conf/conf.lua
@@ -0,0 +1,12 @@
1
+function love.conf(t)
2
+ t.title = "title"
3
+ -- the title of the window of the game is in (string)
4
+ t.version = "11.4"
5
+ -- The love version this game was made for (string)
6
+ t.console = true
7
+ -- attach a console (boolean, windows only)
8
+ t.window.width = 1280
9
+ -- the window width (number)
10
+ t.window.height = 720
11
+ -- the window height (number)
12
+end
conf/main.lua
conf/run.bat
@@ -0,0 +1,3 @@
+@ECHO
+
+start "" "E:\GameRelated\GameDevelop\Love2D\IDE\love-11.4-win64\love" .
0 commit comments