9 lines
118 B
C
9 lines
118 B
C
#ifndef OUTPUT_H
|
|
#define OUTPUT_H
|
|
|
|
void drawFrame();
|
|
void print(const char* format, ...);
|
|
void clearScreen();
|
|
|
|
#endif
|