Mercurial > games > semicongine
annotate src/semicongine.nim @ 250:93bdbb969708
fix: wrong type
author | sam <sam@basx.dev> |
---|---|
date | Tue, 23 May 2023 18:17:15 +0700 |
parents | beb41c93aa3f |
children | d1ee2a815fa1 |
rev | line source |
---|---|
206
7f921d7d0a2b
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
195
diff
changeset
|
1 import semicongine/core |
7f921d7d0a2b
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
195
diff
changeset
|
2 export core |
192
659992f14dd6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
167
diff
changeset
|
3 |
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
4 import semicongine/audio |
127 | 5 import semicongine/engine |
247 | 6 import semicongine/scene |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
7 import semicongine/events |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
8 import semicongine/mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
9 import semicongine/renderer |
195 | 10 import semicongine/resources |
192
659992f14dd6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
167
diff
changeset
|
11 import semicongine/settings |
116 | 12 import semicongine/platform/window |
13 import semicongine/vulkan | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
14 |
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
15 export audio |
127 | 16 export engine |
247 | 17 export scene |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
18 export events |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
19 export mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
20 export renderer |
195 | 21 export resources |
192
659992f14dd6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
167
diff
changeset
|
22 export settings |
60
c57285d292b6
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
56
diff
changeset
|
23 export window |
116 | 24 export vulkan |