This commit is contained in:
2025-08-27 10:20:52 +02:00
parent 791988c420
commit db9d2b5a0a
9 changed files with 400 additions and 239 deletions

12
tests/main.v Normal file
View File

@@ -0,0 +1,12 @@
import freeflowuniverse.herolib.threefold.incatokens
import freeflowuniverse.herolib.core.playcmds
import os
const heroscript_path = os.dir(@FILE) + '/data'
fn main() {
playcmds.run(
heroscript_path: heroscript_path
)!
println('Simulation complete!')
}