Helios Engine 0.1.0
A modular ECS based data-oriented C++23 game engine
 
Loading...
Searching...
No Matches
helios::app::ScheduleWithBeforeTrait Concept Reference

Concept for schedules that provide Before() ordering constraints. More...

#include <schedule.hpp>

Concept definition

template<typename T>
{ T::Before() };
}
Concept for schedules that provide Before() ordering constraints.
Definition schedule.hpp:104

Detailed Description

Concept for schedules that provide Before() ordering constraints.

A schedule with Before trait must provide:

  • static constexpr auto Before() noexcept -> std::array<ScheduleId, N> or similar span-like type

Definition at line 104 of file schedule.hpp.