#pragma once #include namespace charcoal { namespace image_loader { struct ImageRGBA { std::vector data; unsigned int width; unsigned int height; }; ImageRGBA load_file(const std::string& filename); } }