Flecs
v4.1
A fast entity component system (ECS) for C & C++
Toggle main menu visibility
Loading...
Searching...
No Matches
decl.hpp
Go to the documentation of this file.
1
5
6
#pragma once
7
8
namespace
flecs {
9
17
19
using
WorldStats
=
EcsWorldStats
;
20
22
using
PipelineStats
=
EcsPipelineStats
;
23
25
using
WorldSummary
=
EcsWorldSummary
;
26
28
struct
stats
{
30
stats
(
flecs::world
&
world
);
31
};
32
34
35
}
flecs::WorldSummary
EcsWorldSummary WorldSummary
Component with world summary stats.
Definition
decl.hpp:25
flecs::PipelineStats
EcsPipelineStats PipelineStats
Component that stores system/pipeline statistics.
Definition
decl.hpp:22
flecs::WorldStats
EcsWorldStats WorldStats
Component that stores world statistics.
Definition
decl.hpp:19
EcsPipelineStats
Component that stores pipeline statistics.
Definition
stats.h:460
EcsWorldStats
Component that stores world statistics.
Definition
stats.h:448
EcsWorldSummary
Component that stores a summary of world statistics.
Definition
stats.h:466
flecs::stats::stats
stats(flecs::world &world)
Construct the stats module.
Definition
impl.hpp:10
flecs::world
The world.
Definition
world.hpp:246