14 lines
254 B
C
Raw Normal View History

#pragma once
2024-12-29 17:43:28 +01:00
#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);
};