Flecs v4.0
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
entity_view.inl
Go to the documentation of this file.
1
15const char* doc_name() const {
16 return ecs_doc_get_name(world_, id_);
17}
18
28const char* doc_brief() const {
29 return ecs_doc_get_brief(world_, id_);
30}
31
41const char* doc_detail() const {
42 return ecs_doc_get_detail(world_, id_);
43}
44
54const char* doc_link() const {
55 return ecs_doc_get_link(world_, id_);
56}
57
67const char* doc_color() const {
68 return ecs_doc_get_color(world_, id_);
69}
70
80const char* doc_uuid() const {
81 return ecs_doc_get_uuid(world_, id_);
82}
FLECS_API const char * ecs_doc_get_name(const ecs_world_t *world, ecs_entity_t entity)
Get human readable name from entity.
FLECS_API const char * ecs_doc_get_color(const ecs_world_t *world, ecs_entity_t entity)
Get color from entity.
FLECS_API const char * ecs_doc_get_uuid(const ecs_world_t *world, ecs_entity_t entity)
Get UUID from entity.
FLECS_API const char * ecs_doc_get_link(const ecs_world_t *world, ecs_entity_t entity)
Get link to external documentation from entity.
FLECS_API const char * ecs_doc_get_detail(const ecs_world_t *world, ecs_entity_t entity)
Get detailed description from entity.
FLECS_API const char * ecs_doc_get_brief(const ecs_world_t *world, ecs_entity_t entity)
Get brief description from entity.
const char * doc_name() const
Get human readable name.
const char * doc_link() const
Get link to external documentation.
const char * doc_uuid() const
Get UUID.
const char * doc_detail() const
Get detailed description.
const char * doc_brief() const
Get brief description.
const char * doc_color() const
Get color.