mandelbrot/main.cpp

12 lines
168 B
C++

#include "graphics.h"
using namespace Mandelbrot;
int main()
{
Graphics g = Graphics(1800, 1200, "Mandelbrot set visualizer");
g.mainLoop();
return 0;
}