LittleECS is a C++20 Entity Component System. The API is mostly inspired from entt
I highly encourage you to check out the Workflow documentation and example to see what it can do and how to use it.
This project is mostly an educational project of mine that I have started to learn about C++. Some features are not finished to be implemented/tested. I highly not recomend using this for a serious project. Do not hesitate to open an issue if you have any suggestions or review to make.
git clone [email protected]:0-Sacha/littleecs.git
MODULE.bazel
git_override(module_name="littleecs", remote="https://github.com/0-Sacha/StreamFormat.git")
bazel_dep(name = "littleecs")
BUILD.bazel
: In your cc_binary
/ cc_library
deps = [ "@littleecs//:lecs" ],
Like said above, I have begun this project when learning C++, and at the time my projects where absolutely not documented. I am trying to fix this error whenever I got the time. A doc and comments will come one day...
For now, at least, you have the examples (and maybe the tests/) folders to understand what you can do with it. More examples are coming, but again I am trying to do this whenever I have the time to do it.