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

summaryrefslogtreecommitdiff
path: root/source/frontend/StarSongbookInterface.hpp
blob: 85d091b977b4012f51238d6ef9e2992e1f7dd27a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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