Added an empty navigation shell to the client

This commit is contained in:
Kayne Ruse
2013-10-27 22:00:09 +11:00
parent 26eba2def6
commit 2bd8adaf69
8 changed files with 129 additions and 62 deletions
+7 -8
View File
@@ -24,6 +24,10 @@
#include "base_scene.hpp"
#include "image.hpp"
#include <chrono>
class SplashScreen : public BaseScene {
public:
//Public access members
@@ -32,17 +36,12 @@ public:
protected:
//Frame loop
void FrameStart();
void Update(double delta);
void FrameEnd();
void Render(SDL_Surface* const);
//Event handlers
void MouseMotion(SDL_MouseMotionEvent const&);
void MouseButtonDown(SDL_MouseButtonEvent const&);
void MouseButtonUp(SDL_MouseButtonEvent const&);
void KeyDown(SDL_KeyboardEvent const&);
void KeyUp(SDL_KeyboardEvent const&);
//members
std::chrono::steady_clock::time_point startTick;
Image logo;
};
#endif