Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/star.h')
-rw-r--r--src/game/star.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/game/star.h b/src/game/star.h
index e65a9fb..70ce2aa 100644
--- a/src/game/star.h
+++ b/src/game/star.h
@@ -4,31 +4,31 @@
the terms and conditions of the GNU General Public License version 2
*/
-#ifndef __INCLUDED_STAR_H__
-#define __INCLUDED_STAR_H__
+#ifndef __INCLUDED_GAME_STAR_H__
+#define __INCLUDED_GAME_STAR_H__
// project headers
-#include "common/vector3f.h"
-#include "common/color.h"
+#include "math/mathlib.h"
// C++ headers
#include <string>
namespace game {
-/// A star, that shines so bright
+/// a star, that shines so bright
class Star {
public:
Star();
~Star();
- common::Vector3f location;
- common::Color color;
+ math::Vector3f location;
+ math::Color color;
float radius;
std::string name;
};
-} // namespace game
+}
+
+#endif // __INCLUDED_GAME_STAR_H__
-#endif // __INCLUDED_STAR_H__