Mercurial > games > semicongine
view tests/test_resources.nim @ 401:0f87e84d57fd
fix: do not try to change fullscreen if already in correct status
author | sam <sam@basx.dev> |
---|---|
date | Wed, 27 Dec 2023 16:14:36 +0700 |
parents | 5f6d3511ef79 |
children | 1ab09f8cc68d |
line wrap: on
line source
import std/streams import semicongine proc main() = echo "Mods available: ", modList() for modName in modList(): echo modName, ":" selectedMod = modName for i in walkResources(): echo " ", i, ": ", loadResource(i).readAll().len when isMainModule: main()