aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/newlocomotive_uvs.png
diff options
context:
space:
mode:
authororwell96 <mono96.mml@gmail.com>2017-01-17 22:31:29 +0100
committerorwell96 <mono96.mml@gmail.com>2017-01-17 22:31:29 +0100
commit2f5ebd63c38932dbda30b96e8ce20e70474b1f15 (patch)
tree7ee65e835d3bd715e12ca5ab904b3458140b1971 /assets/blender/newlocomotive_uvs.png
parent262826fb8c7e2d5b64b2be1af07fcab1b24f0bd2 (diff)
downloadadvtrains-2f5ebd63c38932dbda30b96e8ce20e70474b1f15.tar.gz
advtrains-2f5ebd63c38932dbda30b96e8ce20e70474b1f15.tar.bz2
advtrains-2f5ebd63c38932dbda30b96e8ce20e70474b1f15.zip
Add detailed steam engine contributed by mbb and Krokoschlange
Diffstat (limited to 'assets/blender/newlocomotive_uvs.png')
0 files changed, 0 insertions, 0 deletions
/span> gameid then return gamemgr.games[i], i end end return nil, nil end -------------------------------------------------------------------------------- function gamemgr.get_game_mods(gamespec, retval) if gamespec ~= nil and gamespec.gamemods_path ~= nil and gamespec.gamemods_path ~= "" then get_mods(gamespec.gamemods_path, retval) end end -------------------------------------------------------------------------------- function gamemgr.get_game_modlist(gamespec) local retval = "" local game_mods = {} gamemgr.get_game_mods(gamespec, game_mods) for i=1,#game_mods,1 do if retval ~= "" then retval = retval.."," end retval = retval .. game_mods[i].name end return retval end -------------------------------------------------------------------------------- function gamemgr.get_game(index) if index > 0 and index <= #gamemgr.games then return gamemgr.games[index] end return nil end --------------------------------------------------------------------------------