Files
raylib_game/src/screen.h
T

10 lines
108 B
C
Raw Normal View History

2026-07-04 17:07:43 +03:00
#ifndef SCREEN_H
#define SCREEN_H
#define GAME_FPS 60
2026-07-05 12:42:34 +03:00
#define MAX_COLUMNS 20
2026-07-04 17:07:43 +03:00
void DrawLevel00();
#endif