Mercurial > games > semicongine
comparison semiconginev2.nim @ 1216:8b5558b29387 compiletime-tests
did: rename base package file
author | sam <sam@basx.dev> |
---|---|
date | Wed, 17 Jul 2024 21:00:37 +0700 |
parents | semicongine.nim@d4a206b5e5b0 |
children | f819a874058f |
comparison
equal
deleted
inserted
replaced
1215:d01a5f625f14 | 1216:8b5558b29387 |
---|---|
1 import std/algorithm | |
2 import std/dynlib | |
3 import std/enumerate | |
4 import std/hashes | |
5 import std/logging | |
6 import std/marshal | |
7 import std/math | |
8 import std/macros | |
9 import std/os | |
10 import std/options | |
11 import std/paths | |
12 import std/random | |
13 import std/sequtils | |
14 import std/strformat | |
15 import std/strutils | |
16 import std/tables | |
17 import std/typetraits | |
18 | |
19 include ./semicongine/rendering/vulkan/api | |
20 include ./semicongine/core | |
21 | |
22 include ./semicongine/events | |
23 include ./semicongine/rendering | |
24 | |
25 include ./semicongine/storage | |
26 include ./semicongine/input |