2023-01-14 03:46:39 +00:00
|
|
|
function love.conf( t )
|
|
|
|
t.modules.joystick = false
|
|
|
|
t.modules.physics = false
|
|
|
|
t.modules.touch = false
|
|
|
|
t.modules.video = false
|
|
|
|
|
2023-01-14 20:03:57 +00:00
|
|
|
t.window.title = "Your Own Drum"
|
2023-01-14 03:46:39 +00:00
|
|
|
t.window.width = 600
|
|
|
|
t.window.height = 600
|
|
|
|
t.window.resizable = true
|
|
|
|
t.window.minwidth = 200
|
|
|
|
t.window.minheight = 200
|
|
|
|
|
|
|
|
end
|