Newer
Older
Import / applications / RocketMan / Source Code / Image.h
@John John on 29 Dec 2020 348 bytes bulk import from macbookpro checkouts
/*
 *  Image.h
 *  iphone-gl-app
 *
 *  Created by John Ryland on 15/06/09.
 *  Copyright 2009 InvertedLogic. All rights reserved.
 *
 */

#ifndef IMAGE_H
#define IMAGE_H


class Image
{
public:
	Image(const char *file);
	~Image();
	unsigned int width();
	unsigned int height();
	unsigned char *data();
private:
	void *dptr;
};


#endif // IMAGE_H