#ifndef APPLICATION_H #define APPLICATION_H #include #include #include #include "debughelper.h" #include "timeline.h" #include "note.h" class Application { public: Application(); void run(); void input(); void update(); void draw(); private: sf::RenderWindow _game_window; sf::Music _music; sf::Font _font; sf::Text _grade; std::unique_ptr _timeline; DebugHelper _debug; void startGameLoop(); void onKeyPressed(const sf::Keyboard::Key& key); void onTap(const Note::Arrow& arrow); }; #endif // APPLICATION_H