/* draw.cc This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ #include "game/game.h" namespace client { /// draw a star void draw_star(game::Star *star, float elapsed); /// draw a ship void draw_ship(game::Ship *ship, float elapsed); /// draw the world void draw_world(float elapsed); }