optionMenu.h
00001 #ifndef OPTION_MENU_H
00002 #define OPTION_MENU_H
00003
00004
00005
00006
00007
00008
00009
00010 #include "resourceInitialize.h"
00011 #include "optionComponent.h"
00012
00013
00014 class OptionMenu : public ResourceInitialize {
00015 DrawSurface* title;
00016 DrawSurface* user_name;
00017 DrawSurface* normal_icon;
00018 DrawSurface* rank_text;
00019
00020 OptionComponent* options;
00021 TextInputComponent* rank_web;
00022
00023 void deleteObject(void);
00024 void recreate(void);
00025
00026 public:
00027 OptionMenu(void);
00028 ~OptionMenu(void);
00029 int Initialize(int argc, char *argv[]);
00030 int MainLoop(void);
00031 };
00032
00033 #endif
00034