flecs

Fast entity component system library for C and C++

brewmacoslinux
Try with needOr install directly
Source

About

Fast entity component system for C & C++

Commands

flecs

Examples

Include flecs in a C project to create an entity component system$ gcc -o my_game main.c -lflecs
Use flecs with C++ to define entities and components$ g++ -o my_app main.cpp -lflecs -std=c++17
Link flecs library when building with pkg-config$ gcc main.c $(pkg-config --cflags --libs flecs) -o app