12 lines
142 B
C
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
|