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

#include <map>

namespace AsuraEngine
{
    namespace Containers
    {

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

    }
}

#endif