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

CleanUpStage - cleanup/shutdown phase. More...

#include <schedules.hpp>

Static Public Member Functions

static constexpr bool IsStage () noexcept
 
static constexpr std::string_view GetName () noexcept
 

Detailed Description

CleanUpStage - cleanup/shutdown phase.

This is the final stage executed during application shutdown. Runs once at application exit. Systems in this stage release resources, save state, and perform cleanup operations.

Schedules in this stage: PreCleanUp, CleanUp, PostCleanUp

Definition at line 64 of file schedules.hpp.

Member Function Documentation

◆ GetName()

static constexpr std::string_view helios::app::CleanUpStage::GetName ( )
inlinestaticconstexprnoexcept
Examples
/home/runner/work/HeliosEngine/HeliosEngine/src/core/include/helios/core/app/schedules.hpp.

Definition at line 66 of file schedules.hpp.

66{ return "CleanUpStage"; }

◆ IsStage()

static constexpr bool helios::app::CleanUpStage::IsStage ( )
inlinestaticconstexprnoexcept