16 lines
314 B
C++
16 lines
314 B
C++
#ifndef DISPLAY_MONITOR_H
|
|
#define DISPLAY_MONITOR_H
|
|
|
|
namespace fallout {
|
|
|
|
int displayMonitorInit();
|
|
int displayMonitorReset();
|
|
void displayMonitorExit();
|
|
void displayMonitorAddMessage(char* string);
|
|
void displayMonitorDisable();
|
|
void displayMonitorEnable();
|
|
|
|
} // namespace fallout
|
|
|
|
#endif /* DISPLAY_MONITOR_H */
|