2024-12-29 21:05:57 +01:00

14 lines
254 B
C++

#pragma once
#include <wut_types.h>
#include <string>
#include <vector>
class FSUtils {
public:
static int32_t LoadFileToMem(std::string_view filepath, std::vector<uint8_t> &buffer);
static bool CreateSubfolder(std::string_view fullpath);
};