Initial commit

This commit is contained in:
Hugo Mårdbrink 2025-08-23 23:54:00 +02:00
commit ac0d491786
21 changed files with 1094 additions and 0 deletions

10
ecs/render_system.odin Normal file
View 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 {
}
}