Mercurial > games > semicongine
annotate src/semicongine.nim @ 696:275ac4cdf7e0
did: replace zippy with "standard" nim zip, compiled from source, fix some errors
author | Sam <sam@basx.dev> |
---|---|
date | Sat, 20 May 2023 17:44:55 +0700 |
parents | d3500ae5d235 |
children | beb41c93aa3f |
rev | line source |
---|---|
667
d3500ae5d235
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
656
diff
changeset
|
1 import semicongine/core |
d3500ae5d235
did: small refactoring of module structure
Sam <sam@basx.dev>
parents:
656
diff
changeset
|
2 export core |
653
ac7dfbd56cc6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
628
diff
changeset
|
3 |
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
4 import semicongine/audio |
588 | 5 import semicongine/engine |
577 | 6 import semicongine/entity |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
7 import semicongine/events |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
8 import semicongine/mesh |
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
9 import semicongine/renderer |
656 | 10 import semicongine/resources |
653
ac7dfbd56cc6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
628
diff
changeset
|
11 import semicongine/settings |
577 | 12 import semicongine/platform/window |
13 import semicongine/vulkan | |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
14 |
628
c2f04f016104
add: initial implementation of audio subsystem with mixer, currently missing windows implementation
Sam <sam@basx.dev>
parents:
589
diff
changeset
|
15 export audio |
588 | 16 export engine |
577 | 17 export entity |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
18 export events |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
19 export mesh |
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
20 export renderer |
656 | 21 export resources |
653
ac7dfbd56cc6
add: textures now support in shader via scene data, also: improved config handling a bit, more to come
Sam <sam@basx.dev>
parents:
628
diff
changeset
|
22 export settings |
521
a25325bec7f2
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
517
diff
changeset
|
23 export window |
577 | 24 export vulkan |