Files
raylib_game/src/screen.h
T
2026-07-05 22:37:41 +07:00

12 lines
142 B
C

#ifndef SCREEN_H
#define SCREEN_H
#include "player.h"
#define GAME_FPS 60
#define MAX_COLUMNS 20
void DrawLevel00(Player *player);
#endif