X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flaunchscreen.h;h=25710122b975cbcd94fa3e85b0ebb3c7ff1e6dd6;hb=cdcad43ad8b497bd73df611ae53e1dfd5257400e;hp=7c4a923ddd2363c6af3d573e45ab1ef89c265bc3;hpb=35332818fc6bad98fe77831de2c51a11326e31aa;p=libs%2Fdemoscene.git diff --git a/source/launchscreen.h b/source/launchscreen.h index 7c4a923..2571012 100644 --- a/source/launchscreen.h +++ b/source/launchscreen.h @@ -1,11 +1,14 @@ #ifndef MSP_DEMOSCENE_LAUNCHSCREEN_H_ #define MSP_DEMOSCENE_LAUNCHSCREEN_H_ -#include #include #include #include #include +#include "resources.h" + +namespace Msp { +namespace DemoScene { class LaunchScreen { @@ -19,11 +22,14 @@ private: Msp::GL::Camera camera; public: - LaunchScreen(Msp::DataFile::Collection &); + LaunchScreen(Resources &); void set_countdown(unsigned); void render(); }; +} // namespace DemoScene +} // namespace Msp + #endif