diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:24:39 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 14:24:39 +0200 |
commit | b99e38badb82c5cc79771a77c5f6ea180c67ee4f (patch) | |
tree | 9cc3381095363b8ee8e1ce19130345cc3a9bb375 /src/crepe/Asset.cpp | |
parent | 202a9ec288ded78771e1f7e4c711a7612b201b9d (diff) |
move Asset from crepe::api to crepe
Diffstat (limited to 'src/crepe/Asset.cpp')
-rw-r--r-- | src/crepe/Asset.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/crepe/Asset.cpp b/src/crepe/Asset.cpp new file mode 100644 index 0000000..15ddc27 --- /dev/null +++ b/src/crepe/Asset.cpp @@ -0,0 +1,14 @@ +#include <filesystem> + +#include "Asset.h" + +using namespace crepe; + +Asset::Asset(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 & Asset::read() { return this->file; } + +const char * Asset::canonical() { return this->src.c_str(); } |