umbra/projs/shadow/shadow-engine/shadow-utility/inc/shadow/util/File.h
Curle a3e89b4e8f
Replace the renderer with a modern, module version. (#7)
* New Vulkan Renderer Module & Associated Fixups
2022-11-26 16:44:16 +00:00

13 lines
302 B
C++

#pragma once
#include <string>
#include <vector>
namespace shadowutil {
struct FileData {
size_t size;
std::vector<char> data;
};
// A testing stub; this should be deleted and wired into the asset system once that becomes ready.
FileData* loadFile(std::string path);
}