diff options
Diffstat (limited to 'entityx/config.h')
-rw-r--r-- | entityx/config.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/entityx/config.h b/entityx/config.h new file mode 100644 index 0000000..b42bbce --- /dev/null +++ b/entityx/config.h @@ -0,0 +1,11 @@ +#pragma once + +#include <cstdint> +#include <cstddef> + +namespace entityx { + +static const size_t MAX_COMPONENTS = 64; +typedef unsigned long TimeDelta; + +} // namespace entityx |