Skip to content

Commit 9b03c83

Browse files
committed
Tweaked: Comments
1 parent db77c09 commit 9b03c83

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

include/gaia/ecs/world.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -1704,11 +1704,14 @@ namespace gaia {
17041704

17051705
#if GAIA_SYSTEMS_ENABLED
17061706

1707+
//! Makes sure the world can work with systems.
17071708
void systems_init();
1709+
1710+
//! Executes all registered systems once.
17081711
void systems_run();
17091712

17101713
//! Provides a system set up to work with the parent world.
1711-
//! \return Entity holding the system
1714+
//! \return Entity holding the system.
17121715
SystemBuilder system();
17131716

17141717
#endif

single_include/gaia.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -26580,11 +26580,14 @@ namespace gaia {
2658026580

2658126581
#if GAIA_SYSTEMS_ENABLED
2658226582

26583+
//! Makes sure the world can work with systems.
2658326584
void systems_init();
26585+
26586+
//! Executes all registered systems once.
2658426587
void systems_run();
2658526588

2658626589
//! Provides a system set up to work with the parent world.
26587-
//! \return Entity holding the system
26590+
//! \return Entity holding the system.
2658826591
SystemBuilder system();
2658926592

2659026593
#endif

0 commit comments

Comments
 (0)