Mercurial > games > semicongine
view tests/test_resources.nim @ 889:a2736295c3f6
add: proper sound test, from public domain
author | Sam <sam@basx.dev> |
---|---|
date | Sun, 04 Feb 2024 22:07:54 +0700 |
parents | 275ac4cdf7e0 |
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()