16 lines
338 B
C++
16 lines
338 B
C++
#ifndef SynClasses
|
|
#define SynClasses
|
|
|
|
#define DegToRad 0.0174533
|
|
#define RotationLimit 45.0
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
#include <vector>
|
|
#include <cmath>
|
|
#include "Randomizer.hpp"
|
|
#include "Entity.hpp"
|
|
#include "PhysicEntity.hpp"
|
|
#include "Particles.hpp"
|
|
#include "Rocket.hpp"
|
|
#endif
|