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

#include <map>

namespace AsuraEngine
{
    namespace Containers
    {

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

    }
}

#endif