forked from nakidai/csnake
19 lines
359 B
C
19 lines
359 B
C
#ifndef __SCREEN_H__
|
|
#define __SCREEN_H__
|
|
|
|
typedef struct screen_t
|
|
{
|
|
int width;
|
|
int height;
|
|
char *screen;
|
|
} Screen;
|
|
typedef char Point;
|
|
|
|
Screen *screenCreate(int width, int height, Point fill_value);
|
|
void screenFree(Screen *screen);
|
|
|
|
Point *screenGetPoint(Screen *screen, int x, int y);
|
|
void screenShow(Screen *screen);
|
|
|
|
#endif /* __SCREEN_H__ */
|