Helios Engine
A modular ECS based data-oriented C++23 game engine framework
Loading...
Searching...
No Matches
helios::ecs::SystemSetTrait Concept Reference

Concept for system sets. More...

#include <system_set.hpp>

Concept definition

template<typename T>
concept SystemSetTrait = std::is_object_v<std::remove_cvref_t<T>> &&
std::is_empty_v<std::remove_cvref_t<T>>
Concept for system sets.

Detailed Description

Concept for system sets.

A system set must be an object and be empty.

Definition at line 29 of file system_set.hpp.