updated input

This commit is contained in:
Patrick Schwarzer 2025-04-30 16:53:53 +02:00
parent f44bcede74
commit b5c44e845a
5 changed files with 45 additions and 12 deletions

View file

@ -1,4 +1,8 @@
function engine.KeyPressed(key)
print("Pressed key: " .. key)
function engine.KeyReleased(key)
print("Released key: " .. key)
end
function engine.KeyDown(key)
print("Key down: " .. key)
end