diff options
Diffstat (limited to 'source/frontend/StarSongbookInterface.hpp')
-rw-r--r-- | source/frontend/StarSongbookInterface.hpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/source/frontend/StarSongbookInterface.hpp b/source/frontend/StarSongbookInterface.hpp new file mode 100644 index 0000000..85d091b --- /dev/null +++ b/source/frontend/StarSongbookInterface.hpp @@ -0,0 +1,24 @@ +#ifndef STAR_SONGBOOK_INTERFACE_HPP +#define STAR_SONGBOOK_INTERFACE_HPP + +#include "StarSongbook.hpp" +#include "StarPane.hpp" + +namespace Star { + +STAR_CLASS(Player); + +STAR_CLASS(SongbookInterface); + +class SongbookInterface : public Pane { +public: + SongbookInterface(PlayerPtr player); + +private: + PlayerPtr m_player; + bool play(); +}; + +} + +#endif |