Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 18, 2006, 12:58:14 AM (18 years ago)
Author:
patrick
Message:

network: the simple menu now works. now i need more graphics, more effects and more sound

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/story_entities/simple_game_menu.h

    r6504 r6520  
    1111#include "event_listener.h"
    1212#include "game_world_data.h"
    13 
     13#include <vector>
    1414
    1515
    1616class SimpleGameMenuData;
    1717class TiXmlElement;
    18 
     18class ImageEntity;
    1919
    2020//! a simple game menu based on a story entity
     
    4141  protected:
    4242    virtual void collide();
     43
     44
     45  private:
     46    std::vector<ImageEntity*>         menuList;                        //!< the list of the menu items
     47    ImageEntity*                      menuSelected;                    //!< ref to the selected menu entity
     48    ImageEntity*                      menuSelector;                    //!< ref to the selector image
     49    ImageEntity*                      menuStartGame;
     50    ImageEntity*                      menuStartMultiplayerGame;
     51    ImageEntity*                      menuQuitGame;
     52    int                               menuSelectedIndex;
    4353};
    4454
Note: See TracChangeset for help on using the changeset viewer.