Added graphics/ImageData class

This commit is contained in:
MihailRis
2023-11-12 03:26:06 +03:00
parent a91fbe7166
commit ffd3e3f852
9 changed files with 110 additions and 61 deletions
+2
View File
@@ -4,8 +4,10 @@
#include <string>
class Texture;
class ImageData;
namespace png {
extern ImageData load_image(std::string filename);
extern Texture* load_texture(std::string filename);
}