Added intro game state and placeholder assets.

This commit is contained in:
2025-09-28 14:56:43 -04:00
parent 0023c0a0a2
commit c2c8d931c3
15 changed files with 157 additions and 31 deletions

View File

@@ -39,11 +39,20 @@ end
function GameState:unload()
end
function GameState:keypressed(_)
function GameState:keypressed(_, _ , _)
end
function GameState:mousemoved(_, _)
function GameState:textinput(_)
end
function GameState:keyreleased(_, _)
end
function GameState:mousemoved(_, _, _, _)
end
@@ -51,6 +60,9 @@ function GameState:mousepressed(_, _, _)
end
function GameState:mousereleased(_, _, _)
end
------------------------------------------------------------------------------
-- Module return
------------------------------------------------------------------------------