Skip to content

Commit

Permalink
feat(tests): add simple example game
Browse files Browse the repository at this point in the history
  • Loading branch information
S1M0N38 committed Feb 9, 2024
1 parent 276c2e9 commit 58b698b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/game/main.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function love.load()
number = 0
end

function love.update(dt)
number = number + 1
end

function love.draw()
love.graphics.print(number)
end

0 comments on commit 58b698b

Please sign in to comment.