Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2007-10-21 23:02:47 +0000
committerStijn Buys <ingar@osirion.org>2007-10-21 23:02:47 +0000
commita237a2d7723b94df6cd3e91401ec28388de6f1a0 (patch)
tree7da376d276d03fced7b94a807c0952fd32bcde08 /src/client/stardrawer.h
parent084c6212afaa6f996091f36d0ff85ac845803a87 (diff)
namespace cleanup
Diffstat (limited to 'src/client/stardrawer.h')
-rw-r--r--src/client/stardrawer.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/client/stardrawer.h b/src/client/stardrawer.h
index 7656414..354da6a 100644
--- a/src/client/stardrawer.h
+++ b/src/client/stardrawer.h
@@ -9,18 +9,22 @@
#include "gl/sphere.h"
#include "game/star.h"
+namespace client {
+
/// Class to draw stars
class StarDrawer
{
public:
- StarDrawer(Star *s);
+ StarDrawer(game::Star *s);
~StarDrawer();
void draw(float elapsed);
private:
- Star *star;
+ game::Star *star;
gl::Sphere sphere;
};
+} // namespace client
+
#endif // __INCLUDED_STARDRAWER_H__