aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: e6262dc466c21ba15ab5d12efb36077c83f5d3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
#include <ctime>
#include <cstdlib>
#include "graphics.hpp"

int main()
{
	srand(time(NULL));
	Graphics g;
	g.run();
}