mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
10 lines
136 B
C
10 lines
136 B
C
#pragma once
|
|
|
|
#ifdef _WIN32
|
|
#include <hash_map>
|
|
using stdext::hash_map;
|
|
#else
|
|
#include <ext/hash_map>
|
|
using __gnu_cxx::hash_map;
|
|
#endif
|