Flecs
v3.2
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
decl.hpp
Go to the documentation of this file.
1
6
#pragma once
7
8
#include "
builder.hpp
"
9
10
namespace
flecs {
11
12
struct
metrics
{
13
using
Value = EcsMetricValue;
14
using
Source = EcsMetricSource;
15
16
struct
Instance
{ };
17
struct
Metric
{ };
18
struct
Counter
{ };
19
struct
CounterIncrement
{ };
20
struct
Gauge
{ };
21
22
metrics
(
flecs::world
&
world
);
23
};
24
25
}
flecs::metrics::CounterIncrement
Definition:
decl.hpp:19
flecs::metrics::Counter
Definition:
decl.hpp:18
flecs::metrics::Gauge
Definition:
decl.hpp:20
flecs::metrics::Instance
Definition:
decl.hpp:16
flecs::metrics::Metric
Definition:
decl.hpp:17
flecs::metrics
Definition:
decl.hpp:12
flecs::world
The world.
Definition:
world.hpp:113
builder.hpp
Builder base class.