00001 // --------------------------------------------------------------------------- 00002 // PLATFORM: All - 00003 // PRODUCT: Fourplay - 00004 // VISIBILITY: Public - 00005 // --------------------------------------------------------------------------- 00006 // - 00007 // PURPOSE: Abstract menu class which menu-like screens derive (tutorial, - 00008 // highscore table, etc. - 00009 // - 00010 // --------------------------------------------------------------------------- 00011 00012 #ifndef MENU_H 00013 #define MENU_H 00014 00024 class Menu { 00025 public: 00029 Menu() {} 00030 00034 virtual ~Menu() {} 00035 00039 virtual void Draw() {} 00040 }; 00041 00042 #endif