main_menu.*pp is building

Scene list:
    > disconnected_screen.*pp
    * lobby_menu.*pp
    > main_menu.*pp
    > options_menu.*pp
    > splash_screen.*pp
    * world*.*pp

    * unfinished
    > building
This commit is contained in:
2015-08-14 18:49:37 +10:00
parent a4d3a356c3
commit a7ce7a0e9b
3 changed files with 47 additions and 47 deletions
+7 -3
View File
@@ -22,9 +22,11 @@
#pragma once
#include "base_scene.hpp"
#include "image.hpp"
#include "button.hpp"
#include "image.hpp"
#include "text_box.hpp"
#include "SDL2/SDL_ttf.h"
class MainMenu : public BaseScene {
public:
@@ -49,8 +51,10 @@ protected:
void KeyUp(SDL_KeyboardEvent const& event) override;
//members
Image image;
Image buttonImage;
TTF_Font* font = nullptr;
Button startButton;
Button optionsButton;
Button quitButton;
TextBox textBox;
};