Initial commit
This commit is contained in:
commit
ac0d491786
21 changed files with 1094 additions and 0 deletions
10
ecs/render_system.odin
Normal file
10
ecs/render_system.odin
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
package ecs
|
||||
|
||||
RenderSystem :: struct {
|
||||
using base: SystemBase,
|
||||
}
|
||||
|
||||
render_system_update :: proc(render_system: ^RenderSystem, coordinator: ^Coordinator) {
|
||||
for entity in render_system.entities {
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue