aboutsummaryrefslogtreecommitdiffstats
path: root/yage/entity/componentmanager.h
blob: fa1096e7adca075fe94fb70cb02d01713f92d8df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <map>

#include "entitymanager.h"

namespace yage
{

template <typename CompT>
class ComponentMapper
{
private:
    std::map<Entity, CompT> map_;
};

} // namespace yage