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

Trait to identify system sets with custom names. More...

#include <system_set.hpp>

Concept definition

template<typename T>
{ T::GetName() } -> std::same_as<std::string_view>;
}
Trait to identify valid system set types.
Trait to identify system sets with custom names.

Detailed Description

Trait to identify system sets with custom names.

A system set with name trait must satisfy SystemSetTrait and provide:

  • static constexpr std::string_view GetName() noexcept
    Template Parameters
    TType to check

Definition at line 37 of file system_set.hpp.