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:54:57 +0000
committerStijn Buys <ingar@osirion.org>2007-10-21 23:54:57 +0000
commitf8e9eab39a5e96d478762d06e27ec38f80128435 (patch)
treebf55c75dbedb1212f3effa23aa6df94932edf22d /src/client/view.h
parent621f4ad1d509665e19738525c80e104b80fb7b26 (diff)
namespace and class cleanups
Diffstat (limited to 'src/client/view.h')
-rw-r--r--src/client/view.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/view.h b/src/client/view.h
index 377cc9b..0087ae5 100644
--- a/src/client/view.h
+++ b/src/client/view.h
@@ -13,21 +13,21 @@ class View
{
public:
/// intialize the view
- static void init();
+ void init();
/// shutdown the view
- static void shutdown();
+ void shutdown();
/// Update the chronometer and draw the game view
- static void draw(float elapsed);
+ void draw(float elapsed);
/// Reset the projection matrix
- static void reset();
+ void reset();
protected:
/// draw the world
- static void draw_world(float elapsed);
+ void draw_world(float elapsed);
/// draw the background
- static void draw_background(float elapsed);
+ void draw_background(float elapsed);
};
} // namespace client