capitalex / Typing Game?
0 likes
0 forks
1 files
Last active 1 month ago
| 1 | score = 0 |
| 2 | timer = 30 |
| 3 | letter = string.char(math.random(97, 122)) |
| 4 | font = love.graphics.newFont(48) |
| 5 | gameover = false |
| 6 | love.graphics.setFont(font) |
| 7 | |
| 8 | function love.update(dt) |
| 9 | timer = timer - dt |
| 10 | if timer <= 0 then |
Newer
Older