Mike: created ability to do 'table = GameState.load(SAVE_FILE)

This commit is contained in:
2017-07-30 21:03:49 -07:00
parent d75e61bba9
commit b91883b3b8
3 changed files with 9 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ function love.keyreleased(key)
if save_exists then
--player = Tserial.unpack( love.filesystem.read( saveFile ) )
GameState.load(SAVE_FILE)
actors = GameState.load(SAVE_FILE)
end
end
end