2026-07-04 17:07:43 +03:00
|
|
|
#ifndef SCREEN_H
|
|
|
|
|
#define SCREEN_H
|
|
|
|
|
|
2026-07-05 22:37:41 +07:00
|
|
|
#include "player.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
|
|
|
|
2026-07-05 22:37:41 +07:00
|
|
|
void DrawLevel00(Player *player);
|
2026-07-04 17:07:43 +03:00
|
|
|
|
|
|
|
|
#endif
|