Advertisement
Guest User

AuroResLoader.h

a guest
Oct 22nd, 2021
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #ifndef AUTORESLOADER_H
  2. #define AUTORESLOADER_H
  3.  
  4. /* C system icnludes */
  5. #include <dirent.h>
  6.  
  7. /* C++ system icnludes */
  8. #include <vector>
  9. #include <string>
  10.  
  11. /* Third-party icnludes */
  12.  
  13. /* Own icnludes */
  14.  
  15. /* Forward Declaration */
  16. struct ImageConfig;
  17.  
  18. const std::string RES_FOLDER_PATH = "../resources/";
  19.  
  20. struct AutoResLoader {
  21. public:
  22.     static std::vector<ImageConfig> getFileConfigFromFolder();
  23. };
  24. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement