#ifndef __PNG_FUNCS_H__
#define __PNG_FUNCS_H__
#include <stdio.h>
#include <stdlib.h>
#include <png.h>

//size_t Png_Width();
//size_t Png_Height();
//int Png_Format();

struct image_attr{
	size_t width;
	size_t height;
	int format;
	char *image;
};
int Load_Terrain(struct image_attr *image, char *filename);



#endif