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

PostStartup schedule - runs after startup initialization. More...

#include <schedules.hpp>

Static Public Member Functions

static constexpr ScheduleId GetStage () noexcept
 
static constexpr auto Before () noexcept -> std::array< ScheduleId, 0 >
 
static constexpr auto After () noexcept -> std::array< ScheduleId, 1 >
 
static constexpr std::string_view GetName () noexcept
 

Detailed Description

PostStartup schedule - runs after startup initialization.

Final schedule in the StartUpStage. Used for tasks that depend on main startup completion. Executes: After(Startup)

Definition at line 110 of file schedules.hpp.

Member Function Documentation

◆ After()

static constexpr auto helios::app::PostStartup::After ( ) -> std::array<ScheduleId, 1>
inlinestaticconstexprnoexcept
Examples
/home/runner/work/HeliosEngine/HeliosEngine/src/core/include/helios/core/app/schedules.hpp.

Definition at line 113 of file schedules.hpp.

113{ return {ScheduleIdOf<Startup>()}; }

◆ Before()

static constexpr auto helios::app::PostStartup::Before ( ) -> std::array<ScheduleId, 0>
inlinestaticconstexprnoexcept

◆ GetName()

static constexpr std::string_view helios::app::PostStartup::GetName ( )
inlinestaticconstexprnoexcept

◆ GetStage()

static constexpr ScheduleId helios::app::PostStartup::GetStage ( )
inlinestaticconstexprnoexcept
Examples
/home/runner/work/HeliosEngine/HeliosEngine/src/core/include/helios/core/app/schedules.hpp.

Definition at line 111 of file schedules.hpp.

111{ return ScheduleIdOf<StartUpStage>(); }