Main Page   Compound List   File List   Compound Members   File Members  

Icon.h

Go to the documentation of this file.
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

Generated on Sat Jan 26 05:53:58 2002 for Splatter by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001