Update src/core/loader.h
Co-authored-by: GPUCode <47210458+GPUCode@users.noreply.github.com>
This commit is contained in:
parent
caa213f36b
commit
c9ed9dbcc1
|
@ -5,5 +5,9 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
enum FileTypes { FILETYPE_UNKNOWN, FILETYPE_PKG };
|
||||
FileTypes detectFileType(const std::string& filepath);
|
||||
enum class FileTypes {
|
||||
Unknown,
|
||||
Pkg,
|
||||
};
|
||||
|
||||
FileTypes DetectFileType(const std::string& filepath);
|
||||
|
|
Loading…
Reference in New Issue