| 263 | } |
| 264 | |
| 265 | String LuaBindings::RootCallbacks::assetData(Root* root, String const& path) { |
| 266 | auto bytes = root->assets()->bytes(path); |
| 267 | return String(bytes->ptr(), bytes->size()); |
| 268 | } |
| 269 | |
| 270 | Image LuaBindings::RootCallbacks::assetImage(Root* root, String const& path) { |
| 271 | return *root->assets()->image(path); |