summaryrefslogtreecommitdiff
path: root/src/settings.h
blob: 15574be9f343e35af56ac391972097b14a0b8e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SETTINGS_H_
#define SETTINGS_H_

#include <raylib.h>

struct settings {
  int window_width;
  int window_height;
};

void load_or_init_settings(struct settings* settings, const char* filename);

#endif