Mercurial > games > semicongine
annotate semiconginev2.nim @ 1220:59e683c4728f compiletime-tests
del: outdated examples
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 17 Jul 2024 21:04:09 +0700 |
| parents | f819a874058f |
| children | 55896320c8bf |
| rev | line source |
|---|---|
| 1191 | 1 import std/algorithm |
| 2 import std/dynlib | |
| 3 import std/enumerate | |
| 4 import std/hashes | |
| 5 import std/logging | |
| 1199 | 6 import std/marshal |
| 1191 | 7 import std/math |
| 8 import std/macros | |
|
1214
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1201
diff
changeset
|
9 import std/monotimes |
| 1191 | 10 import std/os |
| 11 import std/options | |
| 12 import std/paths | |
| 13 import std/random | |
| 14 import std/sequtils | |
| 15 import std/strformat | |
| 16 import std/strutils | |
| 17 import std/tables | |
|
1214
04e446a7eb2b
add: multipass renderer, finish tets for now
sam <sam@basx.dev>
parents:
1201
diff
changeset
|
18 import std/times |
| 1201 | 19 import std/typetraits |
| 1191 | 20 |
| 1199 | 21 include ./semicongine/rendering/vulkan/api |
| 22 include ./semicongine/core | |
| 23 | |
| 24 include ./semicongine/events | |
| 25 include ./semicongine/rendering | |
| 26 | |
| 27 include ./semicongine/storage | |
| 28 include ./semicongine/input |
