about summary refs log tree commit diff stats
path: root/data/maps/the_double_sided/rooms/Flipped Red Area.txtpb
blob: 722d900a505374f1b0b481011f241f52d57922d9 (plain) (blame)
1
2
3
4
5
6
7
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: tran
name: "Flipped Red Area"
display_name: "Maze"
panels {
  name: "RAISED"
  path: "Panels/Maze/panel_12"
  clue: "raised"
  answer: "lowered"
  symbols: "sun"
}
s="w"> "tracker_frame.h" static std::ofstream* logfile; class TrackerApp : public wxApp { public: virtual bool OnInit() { logfile = new std::ofstream(GetAbsolutePath("debug.log")); wxLog::SetActiveTarget(new wxLogStream(logfile)); #ifndef NDEBUG wxLog::SetVerbose(true); wxLog::SetActiveTarget(new wxLogWindow(nullptr, "Debug Log")); #endif GetTrackerConfig().Load(); TrackerFrame *frame = new TrackerFrame(); frame->Show(true); return true; } bool OnExceptionInMainLoop() override { try { throw; } catch (const std::exception& ex) { wxLogError(ex.what()); } return false; } }; wxIMPLEMENT_APP(TrackerApp);