14 lines
198 B
C++
14 lines
198 B
C++
#ifndef RES_H
|
|
#define RES_H
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
namespace Resource {
|
|
extern void initResourceData();
|
|
extern const char *get(const std::string&);
|
|
}
|
|
|
|
|
|
#endif // RES_H
|