Mercurial > games > semicongine
comparison semiconginev2.nim @ 1224:a3fa15c25026 compiletime-tests
did: cleanup, add audio, change platform-dependent structure
author | sam <sam@basx.dev> |
---|---|
date | Wed, 17 Jul 2024 22:02:11 +0700 |
parents | 55896320c8bf |
children | 27cd1c21290e |
comparison
equal
deleted
inserted
replaced
1223:55896320c8bf | 1224:a3fa15c25026 |
---|---|
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/locks | |
5 import std/logging | 6 import std/logging |
6 import std/marshal | 7 import std/marshal |
7 import std/math | 8 import std/math |
8 import std/macros | 9 import std/macros |
9 import std/monotimes | 10 import std/monotimes |
19 import std/typetraits | 20 import std/typetraits |
20 | 21 |
21 include ./semiconginev2/rendering/vulkan/api | 22 include ./semiconginev2/rendering/vulkan/api |
22 include ./semiconginev2/core | 23 include ./semiconginev2/core |
23 | 24 |
25 | |
24 include ./semiconginev2/events | 26 include ./semiconginev2/events |
25 include ./semiconginev2/rendering | 27 include ./semiconginev2/rendering |
26 | 28 |
27 include ./semiconginev2/storage | 29 include ./semiconginev2/storage |
28 include ./semiconginev2/input | 30 include ./semiconginev2/input |
31 | |
32 include ./semiconginev2/audio | |
33 | |
34 StartMixerThread() |