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

Configuration for the frame-limited runner. More...

#include <runners.hpp>

Public Attributes

uint64_t max_frames = 1
 Maximum number of frames to run.
 
bool update_time_resource = true
 Whether to automatically update the Time resource.
 

Detailed Description

Configuration for the frame-limited runner.

Definition at line 106 of file runners.hpp.

Member Data Documentation

◆ max_frames

uint64_t helios::app::FrameLimitedRunnerConfig::max_frames = 1

Maximum number of frames to run.

Examples
/home/runner/work/HeliosEngine/HeliosEngine/src/core/include/helios/core/app/runners.hpp.

Definition at line 107 of file runners.hpp.

◆ update_time_resource

bool helios::app::FrameLimitedRunnerConfig::update_time_resource = true

Whether to automatically update the Time resource.

Examples
/home/runner/work/HeliosEngine/HeliosEngine/src/core/include/helios/core/app/runners.hpp.

Definition at line 108 of file runners.hpp.