Flecs v4.0
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
decl.hpp
Go to the documentation of this file.
1
5
6#pragma once
7
8namespace flecs {
9
17
19struct alerts {
20 using AlertsActive = EcsAlertsActive;
21 using Instance = EcsAlertInstance;
22
23 struct Alert { };
24 struct Info { };
25 struct Warning { };
26 struct Error { };
27
28 alerts(flecs::world& world);
29};
30
31template <typename ... Components>
32struct alert;
33
34template <typename ... Components>
35struct alert_builder;
36
38
39}
Component added to alert instance.
Definition alerts.h:50
Map with active alerts for entity.
Definition alerts.h:55
Alert builder.
Definition builder.hpp:24
The world.
Definition world.hpp:172