initial commit

This commit is contained in:
2026-02-28 11:58:11 +01:00
commit 258cc2e7ba
5 changed files with 154 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