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.
 
 
 
 
 

11 lines
245 B

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