Mercurial > games > semicongine
annotate semicongine.nim @ 1193:5aa1184fa5eb compiletime-tests
did: a few more things
author | sam <sam@basx.dev> |
---|---|
date | Mon, 08 Jul 2024 16:15:33 +0700 |
parents | 239adab121a3 |
children | ba1af13233ee |
rev | line source |
---|---|
1191 | 1 import std/algorithm |
2 import std/dynlib | |
3 import std/enumerate | |
4 import std/hashes | |
5 import std/logging | |
6 import std/math | |
7 import std/macros | |
8 import std/os | |
9 import std/options | |
10 import std/paths | |
11 import std/random | |
12 import std/sequtils | |
13 import std/strformat | |
14 import std/strutils | |
15 import std/tables | |
16 import std/typetraits as typetraits | |
17 | |
18 include semicongine/core | |
19 include semicongine/events | |
20 include semicongine/rendering |