summaryrefslogtreecommitdiff
path: root/src/config.h
blob: 8cbec3309dbc0acf067d8ee7be064783bf3370bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Created by sid on 1/2/24.
//

#ifndef HMMM_CONFIG_H
#define HMMM_CONFIG_H

typedef struct Config {
    int SCREEN_WIDTH;
    int SCREEN_HEIGHT;
    int ORIGIN_X;
    int ORIGIN_Y;
    char TITLE[20];
    int TARGET_FPS;
} Config;
extern Config config;

#endif //HMMM_CONFIG_H