From e26ad57b3cfd91e066b26a76d2f802d1015fc746 Mon Sep 17 00:00:00 2001 From: Arian Ubuntu <ariandervishaj@icloud.com> Date: Wed, 20 Dec 2023 11:30:16 +0100 Subject: [PATCH] "create_planet" devient "create_celestial_object" --- practical_work/planets/skeleton/planet/planet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/practical_work/planets/skeleton/planet/planet.h b/practical_work/planets/skeleton/planet/planet.h index 15ccce7..789da70 100644 --- a/practical_work/planets/skeleton/planet/planet.h +++ b/practical_work/planets/skeleton/planet/planet.h @@ -20,7 +20,7 @@ typedef struct _system // Those function are not mandatory to implement, // it's rather a hint of what you should have. -celestial_body_t create_planet(double mass, vec2 pos); +celestial_body_t create_celestial_body(double mass, vec2 pos); system_t create_system(double delta_t); void show_system(struct gfx_context_t *ctxt, system_t *system); void update_system(system_t *system, double delta_t); -- GitLab