Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -----------------------------------------------------------------------------------------
- --
- -- main.lua
- --
- -----------------------------------------------------------------------------------------
- -- hide the status bar
- display.setStatusBar( display.HiddenStatusBar )
- --GLOBAL REF VARS FOR DYNAMIC STRUCTURING
- _G_SF = "scripts" --Folder that holds all my scripts
- _G_RF = "resources" --Folder for all my resources
- _G_RFF = _G_RF .. "/fonts" --Folder for custom fonts
- _G_RFG = _G_RF .. "/graphics" --Folder for all my graphics
- _G_GFS = _G_RF .. "/sounds" --Folder for all my sounds
- _GmessageFont = "Cheboygan" -- Main custom font for my project
- -- _GmessageFont = "native.systemFont" --[[ UNCOMMENT FOR DEBUG AND TESTING ]]
- -- include the Corona "storyboard" module
- local storyboard = require "storyboard"
- -- load menu screen
- storyboard.gotoScene( _G_SF .. "/mainSplash" )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement