diff options
Diffstat (limited to 'src/client/view.h')
-rw-r--r-- | src/client/view.h | 9 |
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); |