]> git.localhorst.tv Git - blobs.git/blob - src/world/Sun.hpp
a47c039c7721bb0047be671ec00f459d426ca3e8
[blobs.git] / src / world / Sun.hpp
1 #ifndef BLOBS_WORLD_SUN_HPP_
2 #define BLOBS_WORLD_SUN_HPP_
3
4 #include "Body.hpp"
5
6
7 namespace blobs {
8 namespace world {
9
10 class Sun
11 : public Body {
12
13 public:
14         Sun();
15         ~Sun();
16
17         Sun(const Sun &) = delete;
18         Sun &operator =(const Sun &) = delete;
19
20         Sun(Sun &&) = delete;
21         Sun &operator =(Sun &&) = delete;
22
23 };
24
25 }
26 }
27
28 #endif