diff options
Diffstat (limited to 'src/render/draw.h')
-rw-r--r-- | src/render/draw.h | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/render/draw.h b/src/render/draw.h index b6b7b31..f27818b 100644 --- a/src/render/draw.h +++ b/src/render/draw.h @@ -1,13 +1,19 @@ /* - draw.cc + render/draw.h This file is part of the Osirion project and is distributed under - the terms and conditions of the GNU General Public License version 2 + the terms of the GNU General Public License version 2 */ -namespace client +#ifndef __INCLUDED_RENDER_DRAW_H__ +#define __INCLUDED_RENDER_DRAW_H__ + +namespace render { /// draw the world -void draw_world(float elapsed); +void draw(math::Vector3f const &target, float seconds); } + +#endif // __INCLUDED_RENDER_DRAW_H__ + |