Blowbox 2017
A 3D Game Engine by Riko Ophorst using DirectX 12
unordered_map.h
1 #pragma once
2 
3 #include "util/eastl.h"
4 #include <EASTL/unordered_map.h>
5 
6 namespace blowbox
7 {
13  template<typename Key, typename T>
14  using UnorderedMap = eastl::unordered_map<Key, T>;
15 }
eastl::unordered_map< Key, T > UnorderedMap
Typedef for wrapping the EASTL unordered_map.
Definition: unordered_map.h:14
The main Blowbox namespace.
Definition: image.cc:8