1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef SETTINGS_H_ #define SETTINGS_H_ #include <raylib.h> struct settings { int window_width; int window_height; int target_fps; }; void load_or_init_settings(struct settings* settings, const char* filename); #endif