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

CleanUp schedule - main cleanup. 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, 0 >
 
static constexpr std::string_view GetName () noexcept
 

Detailed Description

CleanUp schedule - main cleanup.

Main cleanup schedule in the CleanUpStage. Used for releasing resources and shutting down systems. Executes: After(PreCleanUp) and Before(PostCleanUp)

Definition at line 248 of file schedules.hpp.

Member Function Documentation

◆ After()

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

◆ Before()

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

◆ GetName()

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

◆ GetStage()

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

Definition at line 249 of file schedules.hpp.

249{ return ScheduleIdOf<CleanUpStage>(); }