blob: 5100032290af2e398f5b0168daf77e92b919f52d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// interface.h
// Provides the interface with which all video interactions must occur.
// Common procedure for taking in user input.
char UserInput();
void TerminalInit();
void TerminalClose();
void TerminalInput(char n);
|