Skip to content
Flecs v4.1
decl.hpp
Go to the documentation of this file.
1/**
2 * @file addons/cpp/mixins/stats/decl.hpp
3 * @brief Stats module declarations.
4 */
5
6#pragma once
7
8namespace flecs {
9
10/**
11 * @defgroup cpp_addons_stats Stats
12 * @ingroup cpp_addons
13 * The stats addon tracks statistics for the world and systems.
14 *
15 * @{
16 */
17
18/** Component that stores world statistics. */
20
21/** Component that stores system/pipeline statistics. */
23
24/** Component with world summary stats. */
26
27/** Stats module. */
28struct stats {
29 /** Construct the stats module. */
31};
32
33/** @} */
34
35}
EcsWorldSummary WorldSummary
Component with world summary stats.
Definition decl.hpp:25
EcsPipelineStats PipelineStats
Component that stores system/pipeline statistics.
Definition decl.hpp:22
EcsWorldStats WorldStats
Component that stores world statistics.
Definition decl.hpp:19
Component that stores pipeline statistics.
Definition stats.h:460
Component that stores world statistics.
Definition stats.h:448
Component that stores a summary of world statistics.
Definition stats.h:466
stats(flecs::world &world)
Construct the stats module.
Definition impl.hpp:10
The world.
Definition world.hpp:129