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-03-06 22:59:40 +0000
committerStijn Buys <ingar@osirion.org>2008-03-06 22:59:40 +0000
commitdf61a28d708c30e3e77d1f739dfb4561c042c89c (patch)
treed280b5eef345ea80f78f9d41df3c2367c9a88cd5 /src/render/draw.h
parent6ade6c1c346743b8432600485e28682e276cfbd0 (diff)
moved render::Model to core::Model
Diffstat (limited to 'src/render/draw.h')
-rw-r--r--src/render/draw.h14
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__
+