1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:57:35 +00:00

3DFileViewer: Use ByteString for file paths

This commit is contained in:
Sam Atkins 2024-01-23 16:31:36 +00:00 committed by Sam Atkins
parent 90240c0e02
commit 1750af83b0
4 changed files with 10 additions and 10 deletions

View file

@ -18,5 +18,5 @@ public:
WavefrontOBJLoader() = default;
~WavefrontOBJLoader() override = default;
ErrorOr<NonnullRefPtr<Mesh>> load(String const& filename, NonnullOwnPtr<Core::File> file) override;
ErrorOr<NonnullRefPtr<Mesh>> load(ByteString const& filename, NonnullOwnPtr<Core::File> file) override;
};