#include "RawImage.hpp" namespace MC::Image { void RawImage::add(RawImage::Pixel pixel) { m_pixels.push_back(pixel); } size_t RawImage::size() { return m_pixels.size(); } uint8_t* RawImage::raw() { return (uint8_t*)m_pixels.data(); } }