Mercurial > games > semicongine
annotate src/semicongine.nim @ 621:a15094bc47b4
fix: wrong parantheses
author | Sam <sam@basx.dev> |
---|---|
date | Sat, 29 Apr 2023 17:30:15 +0700 |
parents | b434feaf2b67 |
children | 4d4f7a2eb6ca |
rev | line source |
---|---|
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
1 import semicongine/color |
577 | 2 import semicongine/config |
588 | 3 import semicongine/engine |
577 | 4 import semicongine/entity |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
5 import semicongine/events |
577 | 6 import semicongine/gpu_data |
7 import semicongine/math | |
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 |
577 | 10 import semicongine/platform/window |
11 import semicongine/vulkan | |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
12 |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
13 export color |
577 | 14 export config |
588 | 15 export engine |
577 | 16 export entity |
544
c3c772512e7c
add: new vulkan api wrapper, not done yet
Sam <sam@basx.dev>
parents:
521
diff
changeset
|
17 export events |
577 | 18 export gpu_data |
19 export math | |
517
836790efab48
did: cleanup main namespace, add: better coordinate handling in input example
Sam <sam@basx.dev>
parents:
diff
changeset
|
20 export mesh |
589
b434feaf2b67
did: finish refactoring of render pipeline, yipi! :)
Sam <sam@basx.dev>
parents:
588
diff
changeset
|
21 export renderer |
521
a25325bec7f2
did: deep refactoring of handling vertrex attribute and buffer updates, don't ask ;(
Sam <sam@basx.dev>
parents:
517
diff
changeset
|
22 export window |
577 | 23 export vulkan |