mirror of
https://github.com/LemonBoy/grape.git
synced 2024-12-03 02:50:48 +00:00
12 lines
169 B
C
12 lines
169 B
C
|
#ifndef VIDEO_H
|
||
|
#define VIDEO_H
|
||
|
|
||
|
int video_set_scale (int mode);
|
||
|
void video_draw ();
|
||
|
void video_init ();
|
||
|
|
||
|
void video_save (FILE *f);
|
||
|
void video_load (FILE *f);
|
||
|
|
||
|
#endif
|