#include #include #include "DumpSource.h" #include "View.h" int main(int argc, char* argv[]) { InitWindow(800, 600, "Derelict"); SetWindowState(FLAG_WINDOW_RESIZABLE); SetTargetFPS(60); View view(std::make_unique("sample.json")); while (!WindowShouldClose()) { view.update(GetFrameTime()); view.draw(); } CloseWindow(); }