diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:20:45 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:20:45 +0200 |
commit | 202a9ec288ded78771e1f7e4c711a7612b201b9d (patch) | |
tree | ffb476db3ac57f9edafe3feee315bdf05088cbf2 /src/crepe/api/Resource.cpp | |
parent | f4bb6d57cc88a7e25b3a5f43faafa49a7f500b7c (diff) |
rename Resource to Asset
Diffstat (limited to 'src/crepe/api/Resource.cpp')
-rw-r--r-- | src/crepe/api/Resource.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/crepe/api/Resource.cpp b/src/crepe/api/Resource.cpp deleted file mode 100644 index 1a647ce..0000000 --- a/src/crepe/api/Resource.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include <filesystem> - -#include "Resource.h" - -using namespace crepe::api; - -Resource::Resource(const std::string & src) { - this->src = std::filesystem::canonical(src); - this->file = std::ifstream(this->src, std::ios::in | std::ios::binary); -} - -const std::istream & Resource::read() { return this->file; } - -const char * Resource::canonical() { return this->src.c_str(); } |