blob: db9bd54969f10eff497d09c30d4026db27955fa7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// interface.h
// Provides the interface with which all video interactions must occur.
void TerminalInit();
void TerminalClose();
void TerminalInput(char n);
void TerminalPrompt();
|