EntityComponentMetaSystem
An implementation of an EntityComponent System with template meta-programming.
Loading...
Searching...
No Matches
Meta.hpp
1
2// This work derives from Vittorio Romeo's code used for cppcon 2015 licensed
3// under the Academic Free License.
4// His code is available here: https://github.com/SuperV1234/cppcon2015
5
6
7#include "TypeList.hpp"
8#include "TypeListGet.hpp"
9#include "Combine.hpp"
10#include "Contains.hpp"
11#include "ContainsAll.hpp"
12#include "IndexOf.hpp"
13#include "Morph.hpp"
14#include "ForEach.hpp"
15#include "ForEachWithIndex.hpp"
16#include "ForEachDoubleTuple.hpp"
17#include "Matching.hpp"
18