config file source

This commit is contained in:
2025-09-18 18:33:45 +02:00
parent 0b9c54adad
commit ebb8c4db46
5 changed files with 100 additions and 2 deletions
+10
View File
@@ -1,5 +1,6 @@
#include <GLFW/glfw3.h>
#include <glad/gl.h>
#include <hashmap.h>
#include <linmath.h>
#include <stdbool.h>
#include <sys/time.h>
@@ -77,4 +78,13 @@ typedef struct Timer {
unsigned int target;
} Timer;
typedef struct ConfigFile {
struct hashmap *map;
} ConfigFile;
typedef struct ConfigFileItem {
char *key;
char *value;
} ConfigFileItem;
#endif /* TYPES_H */