Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Subway map hover detection with a quadtree | Star Rauchenberger | 2024-05-12 | 2 | -0/+47 |
| | |||||
* | Higher quality + owl pictures | Star Rauchenb#include <wx/wxprec.h>
#ifndef WX_PRECOMP
#include <wx/wx.h>
#endif
#include "tracker_config.h"
#include "tracker_frame.h"
class TrackerApp : public wxApp {
public:
virtual bool OnInit() {
GetTrackerConfig().Load();
TrackerFrame *frame = new TrackerFrame();
frame->Show(true);
return true;
}
};
wxIMPLEMENT_APP(TrackerApp);
|