Easys
A minimalist, header-only C++ ECS library for efficient and fuss-free entity and component management.
Loading...
Searching...
No Matches
config.hpp
Go to the documentation of this file.
1#pragma once
2
3// Provide configurations options for the user.
4
11#ifndef EASYS_ENTITY_TYPE
12#define EASYS_ENTITY_TYPE uint32_t
13#endif
14
22#ifndef EASYS_ENTITY_LIMIT
23#define EASYS_ENTITY_LIMIT 10000
24#endif