00001 #ifndef VExitBox_h 00002 #define VExitBox_h 00003 00007 class VExitBox 00008 { 00010 float * color1; 00012 float * color2; 00013 int x; 00014 int y; 00015 int width; 00016 bool ins; 00017 float * alpha; 00018 00019 public: 00028 VExitBox(int,int,int,float*,float*,float*); 00029 void draw(); 00030 void inside(int,int); 00031 bool isInside(int,int); 00032 public: 00033 ~VExitBox(void); 00034 }; 00035 00036 #endif