mirror of
https://github.com/gwm17/Specter.git
synced 2024-11-23 02:38:52 -05:00
18 lines
505 B
C++
18 lines
505 B
C++
#include "Navigator.h"
|
|
|
|
Navigator::Application* Navigator::CreateApplication() { return new Application(); }
|
|
Navigator::PhysicsEventBuilder* Navigator::CreatePhysicsEventBuilder() { return new PhysicsEventBuilder(); }
|
|
|
|
int main(int argc, const char** argv)
|
|
{
|
|
Navigator::Logger::Init();
|
|
NAV_TRACE("Logger Initialized!");
|
|
|
|
auto app = Navigator::CreateApplication();
|
|
auto evb = Navigator::CreatePhysicsEventBuilder();
|
|
Navigator::Application::LinkHistogramMap();
|
|
app->Run();
|
|
|
|
delete app;
|
|
delete evb;
|
|
} |