mirror of
https://github.com/love2d/love.git
synced 2026-08-12 16:40:57 +02:00
11 lines
227 B
Lua
11 lines
227 B
Lua
function love.conf(t)
|
|
t.console = true
|
|
t.window.name = 'love.test'
|
|
t.window.width = 360
|
|
t.window.height = 240
|
|
t.window.resizable = true
|
|
t.window.depth = true
|
|
t.window.stencil = true
|
|
t.renderers = {"opengl"}
|
|
end
|