diff options
author | JamesTheMaker <jamesthemaker2005@gmail.com> | 2024-03-08 11:39:39 -0500 |
---|---|---|
committer | JamesTheMaker <jamesthemaker2005@gmail.com> | 2024-03-08 12:19:15 -0500 |
commit | 81ab5b638b5da3aba2625e3ed814493c4278854b (patch) | |
tree | e62580c3361fd7e9c2888f348671b2c2b786c6fc /source/frontend/StarSongbookInterface.hpp | |
parent | 89fe1bf15bc458df6c63f1aaeac42a4883efbfd5 (diff) |
Added searchbar to songbook
Diffstat (limited to 'source/frontend/StarSongbookInterface.hpp')
-rw-r--r-- | source/frontend/StarSongbookInterface.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/frontend/StarSongbookInterface.hpp b/source/frontend/StarSongbookInterface.hpp index 47622a4..f8a6cb2 100644 --- a/source/frontend/StarSongbookInterface.hpp +++ b/source/frontend/StarSongbookInterface.hpp @@ -13,8 +13,12 @@ class SongbookInterface : public Pane { public: SongbookInterface(PlayerPtr player); + void update(float dt) override; + private: PlayerPtr m_player; + StringList m_files; + String m_searchValue; bool play(); }; |