Skip to content
Snippets Groups Projects
Commit e26ad57b authored by Arian Ubuntu's avatar Arian Ubuntu
Browse files

"create_planet" devient "create_celestial_object"

parent 9fe9b66c
No related branches found
No related tags found
1 merge request!42Renommer type "planet_t" par "celestial_body_t"
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment