This commit is contained in:
Nico
2025-07-31 19:56:08 +02:00
commit 4ccfa4b12e
8 changed files with 242 additions and 0 deletions

14
menu.lua Normal file
View File

@@ -0,0 +1,14 @@
local love = require "love"
function drawMenu()
love.graphics.print("Willkommen im Spiele Auswahl!", 50, 50)
love.graphics.print("Drücke '1' für Blackjack", 50, 100)
love.graphics.print("Drücke 'ESC', um zu beenden", 50, 150)
end
function love.keypressed(key)
if key == 'escape' then
love.event.quit()
end
end