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 10bf6b5 commit ba0d7eaCopy full SHA for ba0d7ea
conf.lua
@@ -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