command an entity to move

This commit is contained in:
2026-07-03 02:59:34 -07:00
parent c01b320032
commit 6697ba70bf
4 changed files with 107 additions and 17 deletions
+4
View File
@@ -14,3 +14,7 @@ world_draw :: proc(w: ^World, camera: ^Camera2D) {
entity_draw(&w.entities, camera)
}
world_update :: proc(world: ^World, dt: f32) {
entity_update_movement(&world.entities, dt)
}