Skip to content

Commit a86b660

Browse files
authored
Add files via upload
1 parent 095b0bf commit a86b660

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

conf/conf.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Whitespace-only changes.

conf/run.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@ECHO
2+
3+
start "" "E:\GameRelated\GameDevelop\Love2D\IDE\love-11.4-win64\love" .

0 commit comments

Comments
 (0)