Move through course, sprite and input
Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
This commit is contained in:
@@ -23,7 +23,7 @@ template<typename keyType, typename valueType, typename Pr = std::less<keyType>>
|
||||
using Map = std::map<keyType, valueType, Pr>;
|
||||
|
||||
template<typename keyType, typename valueType, typename Hasher = std::hash<keyType>>
|
||||
using Dictionary = std::map<keyType, valueType, Hasher>;
|
||||
using Dictionary = std::unordered_map<keyType, valueType, Hasher>;
|
||||
|
||||
// Logging Macro
|
||||
#define LOG(M, ...) printf(M "\n", ##__VA_ARGS__)
|
||||
|
||||
Reference in New Issue
Block a user