Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/frontend/StarSongbookInterface.hpp
diff options
context:
space:
mode:
authorJamesTheMaker <jamesthemaker2005@gmail.com>2024-03-08 11:39:39 -0500
committerJamesTheMaker <jamesthemaker2005@gmail.com>2024-03-08 12:19:15 -0500
commit81ab5b638b5da3aba2625e3ed814493c4278854b (patch)
treee62580c3361fd7e9c2888f348671b2c2b786c6fc /source/frontend/StarSongbookInterface.hpp
parent89fe1bf15bc458df6c63f1aaeac42a4883efbfd5 (diff)
Added searchbar to songbook
Diffstat (limited to 'source/frontend/StarSongbookInterface.hpp')
-rw-r--r--source/frontend/StarSongbookInterface.hpp4
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();
};