about summary refs log tree commit diff stats
path: root/src/achievements_pane.h
blob: ac88cac9e224003315e8b935dee5ed681750e909 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef ACHIEVEMENTS_PANE_H_C320D0B8
#define ACHIEVEMENTS_PANE_H_C320D0B8

#include <wx/wxprec.h>

#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif

#include <wx/listctrl.h>

class AchievementsPane : public wxListView {
 public:
  explicit AchievementsPane(wxWindow* parent);

  void UpdateIndicators();

 private:
  std::vector<std::string> achievement_names_;
};

#endif /* end of include guard: ACHIEVEMENTS_PANE_H_C320D0B8 */