diff options
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(); }; |