2020-01-05 02:04:06 +03:00
|
|
|
#ifndef SynClasses
|
|
|
|
#define SynClasses
|
2020-01-07 19:44:40 +03:00
|
|
|
|
|
|
|
#define DegToRad 0.0174533
|
|
|
|
#define RotationLimit 45.0
|
|
|
|
|
2020-01-05 02:04:06 +03:00
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
#include <vector>
|
|
|
|
#include <cmath>
|
|
|
|
#include "Randomizer.hpp"
|
|
|
|
#include "Entity.hpp"
|
|
|
|
#include "PhysicEntity.hpp"
|
|
|
|
#include "Particles.hpp"
|
|
|
|
#include "Rocket.hpp"
|
|
|
|
#endif
|