Started implementing game states and intro.

This commit is contained in:
2025-09-28 02:14:41 -04:00
parent 6fdad4e408
commit 56366e4db9
7 changed files with 291 additions and 24 deletions

22
src/states.lua Normal file
View File

@@ -0,0 +1,22 @@
------------------------------------------------------------------------------
-- Imports
------------------------------------------------------------------------------
local Intro = require 'src.intro'
------------------------------------------------------------------------------
-- Variables
------------------------------------------------------------------------------
-- Table of all valid game states.
local states = {
Intro('intro', 1),
}
------------------------------------------------------------------------------
-- Module return
------------------------------------------------------------------------------
return states