Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/view.h')
-rw-r--r--src/client/view.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/client/view.h b/src/client/view.h
index 0087ae5..fa62d98 100644
--- a/src/client/view.h
+++ b/src/client/view.h
@@ -3,33 +3,36 @@
the terms and conditions of the GNU General Public License version 2
*/
-#ifndef __INCLUDED_VIEW_H__
-#define __INCLUDED_VIEW_H__
+#ifndef __INCLUDED_CLIENT_VIEW_H__
+#define __INCLUDED_CLIENT_VIEW_H__
namespace client {
-/// Draws the userinterface
+/// Draws the user interface
class View
{
public:
/// intialize the view
void init();
+
/// shutdown the view
void shutdown();
- /// Update the chronometer and draw the game view
+ /// update the chronometer and draw the game view
void draw(float elapsed);
- /// Reset the projection matrix
+ /// reset the projection matrix
void reset();
protected:
/// draw the world
void draw_world(float elapsed);
+
/// draw the background
void draw_background(float elapsed);
};
} // namespace client
-#endif // __INCLUDED_VIEW_H__
+#endif // __INCLUDED_CLIENT_VIEW_H__
+