| 952 | } |
| 953 | |
| 954 | ByteArray Assets::read(String const& path) const { |
| 955 | if (auto p = m_files.ptr(path)) |
| 956 | return p->source->read(p->sourceName); |
| 957 | throw AssetException(strf("No such asset '{}'", path)); |
| 958 | } |
| 959 | |
| 960 | ImageConstPtr Assets::readImage(String const& path) const { |
| 961 | if (auto p = m_files.ptr(path)) { |