Mercurial > games > semicongine
annotate semiconginev2/core.nim @ 1266:9e4dc93d4fa9
did: completely rewrite readme
author | sam <sam@basx.dev> |
---|---|
date | Sun, 28 Jul 2024 22:50:22 +0700 |
parents | e8b3dc80e48e |
children |
rev | line source |
---|---|
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
920
diff
changeset
|
1 const RESOURCEROOT = "resources" |
840
44ec744fbedc
did: package restructuring according to nimble recommendation for libraries
Sam <sam@basx.dev>
parents:
diff
changeset
|
2 |
1190
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
920
diff
changeset
|
3 include ./core/utils |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
920
diff
changeset
|
4 include ./core/buildconfig |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
920
diff
changeset
|
5 include ./core/vector |
a3eb305bcac2
start of complete and total refactoring: the ULTIMATE
sam <sam@basx.dev>
parents:
920
diff
changeset
|
6 include ./core/matrix |
1242 | 7 |