Skip to content
Flecs v4.1
decl.hpp
Go to the documentation of this file.
1/**
2 * @file addons/cpp/mixins/system/decl.hpp
3 * @brief System module declarations.
4 */
5
6#pragma once
7
8namespace flecs {
9
10/**
11 * @defgroup cpp_addons_systems Systems
12 * @ingroup cpp_addons
13 * Systems are a query and a function that can be run manually or by a pipeline.
14 *
15 * @{
16 */
17
18/** Tick source component. */
20
21/** Forward declaration for system. */
22struct system;
23
24/** Forward declaration for system builder. */
25template<typename ... Components>
26struct system_builder;
27
28namespace _ {
29
30void system_init(flecs::world& world);
31
32/** @} */
33
34} // namespace _
35} // namespace flecs
EcsTickSource TickSource
Tick source component.
Definition decl.hpp:19
Int to enum.
Definition component.hpp:18
Component used to provide a tick source to systems.
Definition system.h:32
System builder.
Definition builder.hpp:25
System.
Definition impl.hpp:78
The world.
Definition world.hpp:129