Mercurial > games > semicongine
annotate src/semicongine.nim @ 171:ceba165f07d8
add: audio subsystem, windows backend still missing
| author | Sam <sam@basx.dev> |
|---|---|
| date | Mon, 01 May 2023 23:55:07 +0700 |
| parents | 4d4f7a2eb6ca |
| children | 659992f14dd6 |
| rev | line source |
|---|---|
|
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
1 import semicongine/audio |
|
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
2 import semicongine/color |
| 116 | 3 import semicongine/config |
| 127 | 4 import semicongine/engine |
| 116 | 5 import semicongine/entity |
|
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
6 import semicongine/events |
| 116 | 7 import semicongine/gpu_data |
| 8 import semicongine/math | |
|
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 |
| 116 | 11 import semicongine/platform/window |
| 12 import semicongine/vulkan | |
|
56
94d7eed3f118
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
13 |
|
167
4d4f7a2eb6ca
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
128
diff
changeset
|
14 export audio |
|
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
15 export color |
| 116 | 16 export config |
| 127 | 17 export engine |
| 116 | 18 export entity |
|
83
5e19aead2b61
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
60
diff
changeset
|
19 export events |
| 116 | 20 export gpu_data |
| 21 export math | |
|
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 |
|
60
c57285d292b6
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
56
diff
changeset
|
24 export window |
| 116 | 25 export vulkan |
