Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 18, 2018, 12:38:37 PM (7 years ago)
Author:
dreherm
Message:

HUd and Ghost rotations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/3DPacman_FS18/src/modules/pacman/PacmanHUDinfo.h

    r11976 r11978  
    6969                { return this->bShowGhoststatus_; }
    7070
     71            inline void setGameover(bool value){
     72                this->showgameover = value;
     73            }
     74            inline int getGameover() const
     75                { return this->showgameover; }
     76
     77            inline void setlive(bool value){
     78                this->showlive = value;
     79            }
     80            inline int getlive() const
     81                { return this->showlive; }
     82
     83
    7184        private:
    7285            Pacman* PacmanGame;
     
    7487            bool bShowMessage_;
    7588            bool bShowGhoststatus_;
     89            bool showgameover;
     90            bool showlive;
    7691            int messageID;
    7792    };
Note: See TracChangeset for help on using the changeset viewer.