Project structure update

This commit is contained in:
MihailRis
2023-11-05 22:30:52 +03:00
parent d67c707916
commit 7730da0056
19 changed files with 58 additions and 62 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef CODERS_PNG_H_
#define CODERS_PNG_H_
#include <string>
class Texture;
namespace png {
extern Texture* load_texture(std::string filename);
}
#endif /* CODERS_PNG_H_ */