Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Component.hpp
1#pragma once
2
3#include <cinttypes>
4
5namespace Grindstone {
6 namespace ECS {
7 using ComponentType = std::uint8_t;
8 const ComponentType MAX_COMPONENTS = UINT8_MAX;
9 }
10}