#ifndef APPLICATION_H #define APPLICATION_H #include #include #include "timeline.h" #include "note.h" #include "game.h" class Application { public: Application(); void run(); void input(); void update(); void draw(); private: sf::RenderWindow _game_window; std::unique_ptr _timeline; std::shared_ptr _game; void exec(); }; #endif // APPLICATION_H