https://github.com/tesselode/nata Hello o/ I've been working on a library called Nata. It make entity pools, and it uses a hybrid OOP/ECS approach. Systems looks like this: verticalMovementSystem = { filter = function(e) return e.yspeed end, update = function(e, dt) e.y = 300 + 200 * math.sin(uptim...