initial commit
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-02-28 11:58:11 +01:00
commit e57a029b93
5 changed files with 225 additions and 0 deletions

9
main.lua Normal file
View File

@@ -0,0 +1,9 @@
-- main.lua
function love.load()
love.window.setTitle("Teletype Games")
end
function love.draw()
love.graphics.printf("Teletype Games", 0, love.graphics.getHeight() / 2 - 12, love.graphics.getWidth(), "center")
end