Gaia-ECS v1.0.0
A simple and powerful entity component system
Loading...
Searching...
No Matches
set.h
1#pragma once
2
3#include "gaia/external/robin_hood.h"
4
5namespace gaia {
6 namespace cnt {
9 template <typename Key>
10 using set = robin_hood::unordered_flat_set<Key>;
11 } // namespace cnt
12} // namespace gaia