Generate one platform and draw it. WiP.

This commit is contained in:
King_DuckZ 2014-03-28 10:52:59 +01:00
parent 4aef3a7c84
commit fc50c6af55
5 changed files with 64 additions and 12 deletions

View file

@ -29,6 +29,8 @@ namespace cloonel {
class MoverSine;
class MoverLeftRight;
class TiledWallpaper;
class Texture;
class PlatformSystem;
class GameplaySceneClassic : public GameplayScene {
public:
@ -45,6 +47,7 @@ namespace cloonel {
std::unique_ptr<MoverSine> m_moverSine;
std::unique_ptr<MoverLeftRight> m_moverLeftRight;
std::unique_ptr<TiledWallpaper> m_wallpaper;
std::unique_ptr<PlatformSystem> m_platforms;
};
} //namespace cloonel