Mercurial > games > semicongine
comparison semicongine.nim @ 1191:239adab121a3 compiletime-tests
sync from bedroom to office
| author | sam <sam@basx.dev> |
|---|---|
| date | Mon, 08 Jul 2024 01:16:53 +0700 |
| parents | a3eb305bcac2 |
| children | 5aa1184fa5eb |
comparison
equal
deleted
inserted
replaced
| 1190:a3eb305bcac2 | 1191:239adab121a3 |
|---|---|
| 1 import semicongine/core | 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 | |
| 21 | |
| 22 initVulkan(REQUIRED_PLATFORM_EXTENSIONS) |
