summaryrefslogtreecommitdiff
path: root/src/settings.h
blob: 085229973f45ec8310f4b1ad0b1f9ae8c9fea98b (plain)
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