00001 #ifndef __ICON_H_ 00002 #define __ICON_H_ 00003 00004 #include "Texture.h" 00005 00006 class CIcon 00007 { 00008 public: 00009 00010 CIcon (int x, int y, CTexture *pTexture); 00011 00012 void Paint (); 00013 bool isInside (int checkx, int checky); 00014 00015 private: 00016 00017 CTexture *pTexture; 00018 00019 int x, y; 00020 int width, height; 00021 }; 00022 00023 #endif