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.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