Changeset 6835 in orxonox.OLD for trunk/src/story_entities/simple_game_menu.h
- Timestamp:
- Jan 29, 2006, 11:59:39 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/simple_game_menu.h
r6696 r6835 18 18 class TiXmlElement; 19 19 class ImageEntity; 20 21 22 23 class MenuLayer 24 { 25 public: 26 MenuLayer() {} 27 ~MenuLayer() {} 28 29 30 public: 31 std::vector<ImageEntity*> menuList; //!< the list of the menu items 32 }; 33 20 34 21 35 //! a simple game menu based on a story entity … … 52 66 53 67 private: 54 std::vector<ImageEntity*> menuList; //!< the list of the menu items 68 std::vector<MenuLayer*> menuLayer; //!< the menu layer 69 MenuLayer* selectedLayer; //!< the selected menu layer 70 71 //std::vector<ImageEntity*> menuList; //!< the list of the menu items 55 72 ImageEntity* menuSelected; //!< ref to the selected menu entity 56 73 ImageEntity* menuSelector; //!< ref to the selector image
Note: See TracChangeset
for help on using the changeset viewer.