Registry / other / entt
library3.16.0vcpkgunverified

Gaming meets modern C++ - a fast and reliable entity-component system and much more

vcpkg install entt
INSTALL
IMPORT
SIG · ENTT
E
entt
othercppv3.16.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

entt/entt.hpp
#include <entt/entt.hpp>

Create an entity with a Position component

#include <entt/entt.hpp> struct Position { float x, y; }; int main() { entt::registry registry; auto entity = registry.create(); registry.emplace<Position>(entity, 1.0f, 2.0f); auto [x, y] = registry.get<Position>(entity); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
3.16.0latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources

No resource links recorded.

entt — pip install entt · libregistry