Changeset 8035 in orxonox.OLD for trunk/src/story_entities/simple_game_menu.h
- Timestamp:
- May 31, 2006, 4:20:51 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/simple_game_menu.h
r7919 r8035 17 17 #include "elements/text_element.h" 18 18 19 #include "glgui.h" 20 19 21 class SimpleGameMenuData; 20 22 class TiXmlElement; … … 31 33 32 34 public: 33 std::vector<TextElement*> 35 std::vector<TextElement*> menuList; //!< the list of the menu items 34 36 std::vector<StoryEntity*> storyList; //!< the list of the StoryEntities for the menu 35 37 std::vector<ImageEntity*> screenshootList; //!< list of the screen shoots FIXME: make a better structure for this stuff … … 53 55 void execURL() const; 54 56 static int startURL(void* data); 57 58 void setImage(int i); 59 OrxGui::GLGuiImage* image; 60 OrxGui::GLGuiInputLine* imageName; 55 61 /// 56 62 virtual void loadParams(const TiXmlElement* root); … … 69 75 void quitMenu(); 70 76 71 void TEST( ) { printf("TEST\n"); }77 void TEST(int val) { printf("TEST %d\n", val); } 72 78 73 79 protected:
Note: See TracChangeset
for help on using the changeset viewer.