diff options
| -rw-r--r-- | main.lua | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -5,8 +5,12 @@ lg.setLineStyle("rough") function love.load() main_init() - -- start_speck_editor() - start_game_scene() + + if arg[2] == "speck" then + start_speck_editor() + else + start_game_scene() + end end function love.update(dt) |
