tech/game
21/07/15 Love2D - Getting Started - Episode 01
tech-lover
2021. 7. 15. 10:56
- conf.lua
```
function love.conf(t)
t.title = "title"
t.version = "11.3"
t.console = true
t.window.width = 1280
t.window.height = 720
end
```
- main.lua
```
```