00001 #ifndef STATECLOSE_H 00002 #define STATECLOSE_H 00003 00004 #include "irrlicht.h" 00005 #include "state.h" 00006 00008 00011 class StateClose : public State 00012 { 00013 public: 00017 StateClose(irr::c8* n, irr::IrrlichtDevice* d); 00018 00020 ~StateClose(); 00021 00024 bool OnEvent(irr::SEvent event); 00025 00027 void entry(void); 00028 00030 void exit(void); 00031 00034 void render(irr::u32 deltaTime); 00035 00036 protected: 00037 00038 private: 00039 irr::gui::IGUIImage* imgClose; 00040 }; 00041 00042 #endif // STATECLOSE_H