blob: e7830dec17eb6815137b709047c99146b5d81de8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef GLOBALS_H
#define GLOBALS_H
#include "raylib.h"
#define TILE_SIZE 16
#define SCREEN_WIDTH 1280
#define SCREEN_HEIGHT 720
#define BACKGROUND_COLOR (Color){ 88, 68, 34, 255 }
extern bool debugMode;
#endif
|