summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Map.h
blob: 3c538d47411ab29232bc4dde84d7d7c66cbd10c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __ASURA_ENGINE_MAP_H__
#define __ASURA_ENGINE_MAP_H__

#include <map>

namespace AsuraEngine
{

    template<typename key_type, typename value_type>
    using Map = std::map<key_type, value_type>;

}

#endif