Mercurial > minori
comparison include/library/library.h @ 223:84e0a3c4737a
library: implement menu bar buttons
I also went ahead and put the links from Taiga in so I don't have to
worry about it later...
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 08 Jan 2024 16:54:16 -0500 |
parents | b9f111d84d95 |
children | 862d0d8619f6 |
comparison
equal
deleted
inserted
replaced
222:b9f111d84d95 | 223:84e0a3c4737a |
---|---|
4 #include "library/library.h" | 4 #include "library/library.h" |
5 | 5 |
6 #include <unordered_map> | 6 #include <unordered_map> |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 namespace Library { | |
10 | |
9 // int = anime id, map = episode, paths | 11 // int = anime id, map = episode, paths |
10 extern std::unordered_map<int, std::unordered_map<int, std::string>> library; | 12 extern std::unordered_map<int, std::unordered_map<int, std::string>> library; |
11 | 13 |
12 void SearchLibraryFolders(); | 14 void SearchLibraryFolders(); |
13 | 15 |
16 } | |
17 | |
14 #endif // __library__library_h | 18 #endif // __library__library_h |