// SPDX-License-Identifier: MIT #ifndef RGBDS_GFX_PNG_HPP #define RGBDS_GFX_PNG_HPP #include #include #include #include "gfx/rgba.hpp" struct Png { uint32_t width = 0; uint32_t height = 0; std::vector pixels{}; std::vector palette{}; Png() {} Png(char const *filename, std::streambuf &file); }; #endif // RGBDS_GFX_PNG_HPP