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