Mercurial > games > semicongine
view tests/test_resources.nim @ 221:2a2367d289dd
did: update progress, change roadmap to use glTF instead of OBJ (this seems to be super cool!)
author | Sam <sam@basx.dev> |
---|---|
date | Sat, 13 May 2023 19:32:28 +0700 |
parents | b5d9410a8184 |
children | 5f6d3511ef79 |
line wrap: on
line source
import std/times import semicongine proc main() = echo "Mods available: ", modList() for modName in modList(): echo modName, ":" selectedMod = modName for i in walkResources(): echo " ", i, ": ", loadResource(i)[] when isMainModule: main()