Mercurial > minori
view include/library/library.h @ 247:1ae4d8b28a5c
autotools/windres: use AC_PROG_SED for sed
sed is actually surprisingly unportable. on mingw this shouldn't
be a problem, but alas, we should use it anyway
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Wed, 24 Jan 2024 20:15:35 -0500 |
parents | 84e0a3c4737a |
children | 862d0d8619f6 |
line wrap: on
line source
#ifndef __library__library_h #define __library__library_h #include "library/library.h" #include <unordered_map> #include <string> namespace Library { // int = anime id, map = episode, paths extern std::unordered_map<int, std::unordered_map<int, std::string>> library; void SearchLibraryFolders(); } #endif // __library__library_h