Started implementing game states and intro.
This commit is contained in:
22
src/states.lua
Normal file
22
src/states.lua
Normal 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
|
||||
Reference in New Issue
Block a user