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

PostCleanUp schedule - runs after cleanup/shutdown. 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

PostCleanUp schedule - runs after cleanup/shutdown.

Final schedule in the CleanUpStage. Used for tasks that must run after main cleanup. Examples: final resource deallocation, logger shutdown, profiler finalization. Executes: After(CleanUp)

Definition at line 276 of file schedules.hpp.

Member Function Documentation

◆ After()

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

Definition at line 279 of file schedules.hpp.

279{ return {ScheduleIdOf<CleanUp>()}; }

◆ Before()

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

◆ GetName()

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

◆ GetStage()

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

Definition at line 277 of file schedules.hpp.

277{ return ScheduleIdOf<CleanUpStage>(); }