SFML_Experiments/3DTest/SynGame.hpp

15 lines
290 B
C++
Raw Normal View History

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-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