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

Trait to identify valid sub-app types. More...

#include <sub_app.hpp>

Concept definition

template<typename T>
concept helios::app::SubAppTrait = std::is_empty_v<std::remove_cvref_t<T>>
Trait to identify valid sub-app types.
Definition sub_app.hpp:43

Detailed Description

Trait to identify valid sub-app types.

A valid sub-app type must be an empty struct or class.

Definition at line 43 of file sub_app.hpp.