Rename PlatformSystem to PlatformSpawner.

This commit is contained in:
King_DuckZ 2014-08-13 22:51:08 +02:00
parent 896b368cbe
commit c59a4573f4
5 changed files with 26 additions and 26 deletions

View file

@ -31,7 +31,7 @@ namespace cloonel {
class MoverWorld;
class TiledWallpaper;
class Texture;
class PlatformSystem;
class PlatformSpawner;
class GameplaySceneClassic : public GameplayScene {
public:
@ -49,7 +49,7 @@ namespace cloonel {
std::unique_ptr<MoverLeftRight> m_moverLeftRight;
std::unique_ptr<MoverWorld> m_moverWorld;
std::unique_ptr<TiledWallpaper> m_wallpaper;
std::unique_ptr<PlatformSystem> m_platforms;
std::unique_ptr<PlatformSpawner> m_platforms;
};
} //namespace cloonel