25 lines
383 B
C
25 lines
383 B
C
|
//
|
||
|
// Created by brett on 6/11/23.
|
||
|
//
|
||
|
|
||
|
#ifndef PARKSNREC_CONFIG_H
|
||
|
#define PARKSNREC_CONFIG_H
|
||
|
|
||
|
#include <unordered_map>
|
||
|
|
||
|
namespace parks {
|
||
|
|
||
|
// Build Config
|
||
|
#define BUILD_DEV_TOOLS
|
||
|
//#define BUILD_RELEASE_MODE
|
||
|
|
||
|
// Types
|
||
|
template<typename K, typename V, typename hash = std::hash<K>>
|
||
|
using hashmap = std::unordered_map<K, V, hash>;
|
||
|
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif //PARKSNREC_CONFIG_H
|