2020-01-08 14:45:47 +03:00
|
|
|
#ifndef SynClasses
|
|
|
|
#define SynClasses
|
|
|
|
|
|
|
|
#define DegToRad 0.0174533
|
|
|
|
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
#include <sstream>
|
|
|
|
#include <vector>
|
|
|
|
#include <cmath>
|
|
|
|
#include "Timer.hpp"
|
2020-01-08 23:11:13 +03:00
|
|
|
#include "Vectors.hpp"
|
2020-01-09 18:06:30 +03:00
|
|
|
#include "Objects.hpp"
|
|
|
|
#include "RayMarch.hpp"
|
2020-01-08 14:45:47 +03:00
|
|
|
#include "Window.hpp"
|
2020-01-08 16:19:25 +03:00
|
|
|
#include "Render.hpp"
|
2020-01-08 14:45:47 +03:00
|
|
|
#endif
|