Files
LuckyShroom/menu.lua
2025-07-31 19:56:08 +02:00

15 lines
344 B
Lua

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