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

Concept for tiny components (single cache line portion), where sizeof(T) <= 16. More...

#include <component.hpp>

Concept definition

template<typename T>
concept helios::ecs::TinyComponentTrait = ComponentTrait<T> && (sizeof(T) <= 16)
Concept to check if a type can be used as a component.
Definition component.hpp:39
Concept for tiny components (single cache line portion), where sizeof(T) <= 16.
Definition component.hpp:67

Detailed Description

Concept for tiny components (single cache line portion), where sizeof(T) <= 16.

Definition at line 67 of file component.hpp.