name: "Purple Room" display_name: "Central" panels { name: "HOIST" path: "Panels/Purple Room/purple_1" clue: "hoist" answer: "jack" symbols: SUN } panels { name: "CORE" path: "Panels/Purple Room/purple_2" clue: "core" answer: "star" symbols: BOXES } panels { name: "FISH" path: "Panels/Purple Room/purple_3" clue: "fish" answer: "salmon" symbols: EXAMPLE } panels { name: "ALLOW" path: "Panels/Purple Room/purple_4" clue: "allow" answer: "banana" symbols: SUN symbols: SPARKLES } panels { name: "BIRD" path: "Panels/Purple Room/purple_5" clue: "bird" answer: "kiwi" symbols: EXAMPLE } panels { name: "HONK" path: "Panels/Purple Room/purple_6" clue: "honk" answer: "goose" symbols: SOUND } panels { name: "APE" path: "Panels/Purple Room/purple_7" clue: "ape" answer: "grape" symbols: SPARKLES } panels { name: "APATHY" path: "Panels/Purple Room/purple_8" clue: "apathy" answer: "passion" symbols: SUN } n Autotracker for the Lingo Archipelago integration
about summary refs log blame commit diff stats
path: root/src/achievements_pane.h
blob: ac88cac9e224003315e8b935dee5ed681750e909 (plain) (tree)





















                                                              
#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 */