vibe coding an orbital mechanics simulation to try out claude code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
191 B

#ifndef CONFIG_LOADER_H
#define CONFIG_LOADER_H
#include "simulation.h"
#include "../ext/tomlc17/src/tomlc17.h"
bool load_system_config(SimulationState* sim, const char* filepath);
#endif