/* # ______ ____ ___ # | \/ ____| |___| # | | | \ | | #----------------------------------------------------------------------- # Copyright 2020, tyra - https://github.com/h4570/tyra # Licenced under Apache License 2.0 # Sandro Sobczyński */ #pragma once #include namespace Tyra { class Loader { protected: std::string getFilenameFromPath(const std::string& path); std::string getFilenameWithoutExtension(const std::string& filename); }; } // namespace Tyra