mirror of https://github.com/bsnes-emu/bsnes.git
25 lines
306 B
C++
25 lines
306 B
C++
namespace phoenix {
|
|
|
|
void pConsole::print(string text) {
|
|
}
|
|
|
|
void pConsole::reset() {
|
|
}
|
|
|
|
void pConsole::setBackgroundColor(Color color) {
|
|
}
|
|
|
|
void pConsole::setForegroundColor(Color color) {
|
|
}
|
|
|
|
void pConsole::setPrompt(string prompt) {
|
|
}
|
|
|
|
void pConsole::constructor() {
|
|
}
|
|
|
|
void pConsole::destructor() {
|
|
}
|
|
|
|
}
|