name: "D Room" display_name: "D Room" panels { name: "BASEBALL" path: "Panels/D/d_2" clue: "baseball" answer: "hat" symbols: EXAMPLE } panels { name: "BIKERS" path: "Panels/D/d_3" clue: "biker's" answer: "tan" symbols: EXAMPLE } panels { name: "RED" path: "Panels/D/d_4" clue: "red" answer: "ant" symbols: EXAMPLE } panels { name: "SUN" path: "Panels/D/d_5" clue: "sun" answer: "tan" symbols: EXAMPLE } panels { name: "BLACK" path: "Panels/D/d_6" clue: "black" answer: "ant" symbols: EXAMPLE } panels { name: "COWBOY" path: "Panels/D/d_7" clue: "cowboy" answer: "hat" symbols: EXAMPLE } panels { name: "SPRAY" path: "Panels/D/d_8" clue: "spray" answer: "tan" symbols: EXAMPLE } panels { name: "BOWLER" path: "Panels/D/d_9" clue: "bowler" answer: "hat" symbols: EXAMPLE } panels { name: "CARPENTER" path: "Panels/D/d_10" clue: "carpenter" answer: "ant" symbols: EXAMPLE } Autotracker for the Lingo Archipelago integration
about summary refs log tree commit diff stats
path: root/tracker_panel.h
blob: 49b4d23500b52bc72799f2b508d45b3e6e96aed4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef TRACKER_PANEL_H_D675A54D
#define TRACKER_PANEL_H_D675A54D

#include <wx/wxprec.h>

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

class TrackerPanel : public wxPanel {
public:
  TrackerPanel(wxWindow *parent);

private:
  void OnPaint(wxPaintEvent &event);

  void Redraw();

  wxImage map_image_;
  wxBitmap rendered_;
};

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