2009-10-03 21:16:00 -04:00
|
|
|
#ifndef HEADER_FEATURE_UNLOCKED_HPP
|
|
|
|
#define HEADER_FEATURE_UNLOCKED_HPP
|
|
|
|
|
|
|
|
#include "guiengine/cutscene.hpp"
|
|
|
|
|
2009-10-04 15:39:17 -04:00
|
|
|
namespace irr { namespace scene { class ISceneNode; class ICameraSceneNode; } }
|
2009-10-03 21:16:00 -04:00
|
|
|
|
|
|
|
class FeatureUnlockedCutScene : public GUIEngine::CutScene
|
|
|
|
{
|
|
|
|
FeatureUnlockedCutScene();
|
|
|
|
void prepare();
|
|
|
|
|
2009-10-04 15:39:17 -04:00
|
|
|
float angle;
|
2009-10-03 21:16:00 -04:00
|
|
|
irr::scene::ISceneNode* sky;
|
2009-10-04 15:39:17 -04:00
|
|
|
irr::scene::ICameraSceneNode* camera;
|
2009-10-03 21:16:00 -04:00
|
|
|
public:
|
|
|
|
static void show();
|
|
|
|
|
|
|
|
void onUpdate(float dt, irr::video::IVideoDriver*);
|
|
|
|
void terminate();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|