mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-26 10:57:58 +00:00
22 lines
361 B
C++
22 lines
361 B
C++
#ifedef _IMAGE_FILE_H_
|
|
#define _IMAGE_FILE_H_
|
|
|
|
class ImageFile {
|
|
|
|
public:
|
|
|
|
ImageFile(const char *filename);
|
|
~ImageFile();
|
|
|
|
void GetWidth() const { return m_Width; }
|
|
void GetHeight() const { return m_Height; }
|
|
void GetPixels() const;
|
|
|
|
private:
|
|
unsigned int m_Handle;
|
|
unsigned int m_Width;
|
|
unsigned int m_Height;
|
|
};
|
|
|
|
|
|
#endif // _IMAGE_FILE_H_
|