mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 00:34:22 +00:00
destructor for class Console
This commit is contained in:
parent
b435fbeb7e
commit
707f1a0d07
@ -24,6 +24,9 @@ Console::Console(GrafPtr port, Rect r)
|
||||
|
||||
currentInstance = this;
|
||||
}
|
||||
Console::~Console()
|
||||
{
|
||||
}
|
||||
|
||||
Rect Console::CellRect(short x, short y)
|
||||
{
|
||||
|
@ -6,6 +6,7 @@ class Console
|
||||
{
|
||||
public:
|
||||
Console(GrafPtr port, Rect r);
|
||||
~Console();
|
||||
void Draw();
|
||||
void putch(char c);
|
||||
std::string ReadLine();
|
||||
|
Loading…
Reference in New Issue
Block a user