Fixed missing int

This commit is contained in:
Jerome 2023-05-08 22:22:33 +02:00
parent 03f635cae4
commit 6ded85a2c8

View file

@ -52,7 +52,7 @@ class Image {
/// @brief Saves the image to a file.
/// Supports the following formats : PNG, BMP, TGA, JPG. The format is determined from the file extension.
/// @param filename Path to save the image to.
Save(std::string const& filename) const;
int Save(std::string const& filename) const;
int GetWidth() const;
int GetHeight() const;