#pragma once #include #include #include "Image.h" namespace Asset { class SpriteAssetLoader { public: static const char* GetFileExtension() { return ".sprite"; } static bool Load(const std::string& path, std::vector& pixels, RenderData::Image& image); static bool Save(const std::string& path, const RenderData::Image& image); }; }