Advertisement
FaisalAhemdBijoy

bitmaploder h

May 21st, 2021
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #ifndef BMPLOADER_H
  2. #define BMPLOADER_H
  3. #include<windows.h>
  4.  
  5. class BmpLoader
  6. {
  7.     public:
  8.         unsigned char* textureData;
  9.         int iWidth, iHeight;
  10.  
  11.         BmpLoader(const char*);
  12.         ~BmpLoader();
  13.  
  14.     private:
  15.         BITMAPFILEHEADER bfh;
  16.         BITMAPINFOHEADER bih;
  17. };
  18.  
  19. #endif // BMPLOADER_H
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement