home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / WINTUT2.ZIP / Tut2 / sprite.h < prev    next >
Text File  |  1997-04-03  |  369b  |  19 lines

  1. class CSprite
  2. {
  3. public :
  4.     CSprite ();
  5.     ~CSprite ();
  6.     
  7.     void InitImage (HINSTANCE hInst, WORD nIDResource, int nWidth, int nHeight);
  8.             //    Initialize image from resource
  9.  
  10.     void DrawImage (HDC pDC, int nX, int nY);
  11.             //    Paint image at set location
  12.     
  13. private :
  14.  
  15.     HBITMAP    m_hbmImage;
  16.     int        m_nWidth, m_nHeight;
  17. };
  18.     //    Encloses information for our image
  19.