vecs
Fast, flexible ecs in C++ with ergonomic API
|
A template for converting types into system parameters. More...
#include <vecs.h>
A template for converting types into system parameters.
The into_system_param
struct is a template that enforces specialization for specific types used as system parameters. If a type is not specialized, a compile-time error is triggered.
The primary template does not provide an implementation for get
, and will result in a static assertion failure if not specialized, helping enforce that only certain types are valid system parameters.
T | The type to be converted into a system parameter. |