aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/io/Resource.hpp
blob: d1343d8e1c138f1807c16a25fad18f456cbce50d (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "../Base.hpp"
#include "Stream.hpp"

#include <memory>

namespace cru::io {
std::unique_ptr<Stream> CreateStreamFromResourcePath(const String& path);
}