mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 10:13:42 +00:00
16 lines
200 B
C
16 lines
200 B
C
#pragma once
|
|
|
|
#define SCREEN_SIZE_HEIGHT 640
|
|
#define SCREEN_SIZE_WIDTH 800
|
|
|
|
#define FPS 60
|
|
|
|
#define TILE_SIZE 32
|
|
|
|
#define MAP_SIZE_X 25
|
|
#define MAP_SIZE_Y 20
|
|
|
|
#define IDLE "idle"
|
|
#define WALK "walk"
|
|
|