about summary refs log tree commit diff stats
path: root/util/generate_gamedata.rb
Commit message (Expand)AuthorAgeFilesLines
* Implemented color shuffleStar Rauchenberger2023-04-161-0/+37
href='#n21'>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 */