Acheron
Loading...
Searching...
No Matches
types.hpp
1
#pragma once
2
3
#include <cstdint>
4
#include <unordered_set>
5
6
namespace
acheron::ecs {
7
using
Entity = std::uint64_t;
8
9
using
ComponentID = std::uint16_t;
15
using
Signature = std::unordered_set<ComponentID>;
16
17
using
SystemStageID = std::uint64_t;
18
}
src
ecs
types.hpp
Generated by
1.14.0