Some menu scenes compiling; replaced KR Studios logo file

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:18:21 +10:00
parent fedc420c19
commit a4d3a356c3
9 changed files with 52 additions and 52 deletions
+7 -4
View File
@@ -21,10 +21,11 @@
*/
#pragma once
#include "base_scene.hpp"
#include "image.hpp"
#include "button.hpp"
#include "image.hpp"
#include "text_line.hpp"
#include "base_scene.hpp"
//NOTE: The options screen needs to be USED
class OptionsMenu : public BaseScene {
@@ -50,6 +51,8 @@ private:
void KeyUp(SDL_KeyboardEvent const& event) override;
//members
Image image;
Image buttonImage;
TTF_Font* font = nullptr;
Button backButton;
TextLine textLine;
};