massive cleaning of file section headers
[physics.git] / src / Entities / Point.h
CommitLineData
ad9f1fb6
PG
1#ifndef POINT_H
2#define POINT_H
3
4#include "Particle.h"
5#include "../Vector2.h"
6
ad9f1fb6
PG
7
8/// ***** Header Class *****
617dcc71 9
ad9f1fb6
PG
10class Point: public Particle
11{
12 public:
5f1f55d1
PG
13 Point(const Vector2&, bool=true);
14 Point(const Vector2&, float);
ad9f1fb6
PG
15 virtual ~Point();
16
17 virtual void draw();
18
19 protected:
20 float radius;
21 // color
22};
23
24#endif // POINT_H