diff options
Diffstat (limited to 'src/render/draw.h')
-rw-r--r-- | src/render/draw.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/render/draw.h b/src/render/draw.h index 122d7cd..a3b4d30 100644 --- a/src/render/draw.h +++ b/src/render/draw.h @@ -30,9 +30,12 @@ void reset(); /// draw a sphere void draw_sphere(const math::Color & color, float radius); -/// draw a corona +/// draw globe corona void draw_globe_corona(const math::Vector3f location, const math::Color & color, const float radius, const size_t corona_id); +/// draw globe rings +void draw_globe_rings(const math::Color & color, const size_t rings_id); + /// draw mode lights and flares void draw_model_lights( model::Model *model, const float scale, |