My game makes use of an Entity-Component-System (ECS) It's a much better method of organizing data and functions than Object Oriented Programming (OOP) for videogames. For this purpose, I made use of free software libraries: entt at first for C++, then flecs for C99. My first impression of ECS as very complex in general was … Continue reading Introducing tnecs v1.0