Mercurial > games > semicongine
comparison semicongine.nim @ 1199:ba1af13233ee compiletime-tests
add: working main-renderloop
author | sam <sam@basx.dev> |
---|---|
date | Sat, 13 Jul 2024 23:27:12 +0700 |
parents | 5aa1184fa5eb |
children | d4a206b5e5b0 |
comparison
equal
deleted
inserted
replaced
1198:96a094cd0c78 | 1199:ba1af13233ee |
---|---|
1 import std/algorithm | 1 import std/algorithm |
2 import std/dynlib | 2 import std/dynlib |
3 import std/enumerate | 3 import std/enumerate |
4 import std/hashes | 4 import std/hashes |
5 import std/logging | 5 import std/logging |
6 import std/marshal | |
6 import std/math | 7 import std/math |
7 import std/macros | 8 import std/macros |
8 import std/os | 9 import std/os |
9 import std/options | 10 import std/options |
10 import std/paths | 11 import std/paths |
13 import std/strformat | 14 import std/strformat |
14 import std/strutils | 15 import std/strutils |
15 import std/tables | 16 import std/tables |
16 import std/typetraits as typetraits | 17 import std/typetraits as typetraits |
17 | 18 |
18 include semicongine/core | 19 include ./semicongine/rendering/vulkan/api |
19 include semicongine/events | 20 include ./semicongine/core |
20 include semicongine/rendering | 21 |
22 include ./semicongine/events | |
23 include ./semicongine/rendering | |
24 | |
25 include ./semicongine/storage | |
26 include ./semicongine/input |