about summary refs log tree commit diff stats
path: root/area_window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'area_window.cpp')
-rw-r--r--area_window.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/area_window.cpp b/area_window.cpp index b142525..482dcb0 100644 --- a/area_window.cpp +++ b/area_window.cpp
@@ -25,6 +25,11 @@ void AreaWindow::OnPaint(wxPaintEvent& event) {
25 25
26void AreaWindow::OnEnterWindow(wxMouseEvent& event) { 26void AreaWindow::OnEnterWindow(wxMouseEvent& event) {
27 std::cout << GetGameData().GetMapArea(area_id_).name << std::endl; 27 std::cout << GetGameData().GetMapArea(area_id_).name << std::endl;
28 std::cout << "---" << std::endl;
29 for (const Location& loc : GetGameData().GetMapArea(area_id_).locations) {
30 std::cout << loc.name << std::endl;
31 }
32 std::cout << "---" << std::endl;
28} 33}
29 34
30void AreaWindow::Redraw() { 35void AreaWindow::Redraw() {