summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Containers/Map.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Engine/Containers/Map.h')
-rw-r--r--Source/Asura.Engine/Containers/Map.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Source/Asura.Engine/Containers/Map.h b/Source/Asura.Engine/Containers/Map.h
new file mode 100644
index 0000000..2caedef
--- /dev/null
+++ b/Source/Asura.Engine/Containers/Map.h
@@ -0,0 +1,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 \ No newline at end of file