Skip to content

Commit ba0d7ea

Browse files
authored
Create conf.lua
1 parent 10bf6b5 commit ba0d7ea

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

conf.lua

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-- conf.lua: Konfiguracja Love2D
2+
3+
function love.conf(t)
4+
t.window.width = 800
5+
t.window.height = 600
6+
t.window.resizable = true
7+
t.window.fullscreen = false
8+
t.window.title = "Hacker Game"
9+
t.modules.audio = true
10+
t.modules.sound = true
11+
end

0 commit comments

Comments
 (0)