The Game Engine  1
Menu.cpp
Go to the documentation of this file.
1 #include "Menu.h"
2 #include "Game.h"
3 //the beggining
4 Menu::Menu( std::string name, std::string themeName, bool fullscreen):
5  WorldObject(name)
6 {
7 }
8 
9 void Menu::draw()
10 {
11  //draw each MenuPanel
12 }
13 
15 {
16  if(mUnused) return;
18  //update each button
19 }
20 
22 {
23 }