// 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, height; std::vector pixels{}; std::vector palette{}; Png() {} Png(char const *filename, std::streambuf &file); }; #endif // RGBDS_GFX_PNG_HPP