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>2008-02-03 18:53:40 +0000
committerStijn Buys <ingar@osirion.org>2008-02-03 18:53:40 +0000
commit43b994017a560a2fa97894ebfe121375d6614b6f (patch)
treebebdf504c283a797707f92d46e7d3ed8b5100a9d /src/client/view.h
parent6011bbb179f72a370411960eafdbbc98e6607f05 (diff)
basic client console
Diffstat (limited to 'src/client/view.h')
-rw-r--r--src/client/view.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/client/view.h b/src/client/view.h
index e0a613f..92965ce 100644
--- a/src/client/view.h
+++ b/src/client/view.h
@@ -24,9 +24,18 @@ public:
/// reset the projection matrix
void reset();
+ /// width of the console (in OpenGL units)
float width;
+
+ /// height of the console (in OpenGL units)
float height;
+ /// bottom left x value
+ float x;
+
+ /// bottom left y value
+ float y;
+
protected:
/// draw the world
void draw_world(float elapsed);