Mercurial > games > semicongine
annotate src/semicongine.nim @ 275:5d20689432bf
add: collision for hitboxes
author | Sam <sam@basx.dev> |
---|---|
date | Sat, 03 Jun 2023 01:39:02 +0700 |
parents | d1ee2a815fa1 |
children | 5af702c95b16 |
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 |
275 | 6 import semicongine/collision |
247 | 7 import semicongine/scene |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
8 import semicongine/events |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
9 import semicongine/mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
10 import semicongine/renderer |
195 | 11 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
|
12 import semicongine/settings |
263
d1ee2a815fa1
add: some api improvments, preparing for font-loading
Sam <sam@basx.dev>
parents:
247
diff
changeset
|
13 import semicongine/text |
116 | 14 import semicongine/platform/window |
15 import semicongine/vulkan | |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
16 |
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
17 export audio |
127 | 18 export engine |
275 | 19 export collision |
247 | 20 export scene |
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
21 export events |
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
22 export mesh |
128
9901ec3831d1
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
127
diff
changeset
|
23 export renderer |
195 | 24 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
|
25 export settings |
263
d1ee2a815fa1
add: some api improvments, preparing for font-loading
Sam <sam@basx.dev>
parents:
247
diff
changeset
|
26 export text |
60
c57285d292b6
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
56
diff
changeset
|
27 export window |
116 | 28 export vulkan |