mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +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;
|
currentInstance = this;
|
||||||
}
|
}
|
||||||
|
Console::~Console()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
Rect Console::CellRect(short x, short y)
|
Rect Console::CellRect(short x, short y)
|
||||||
{
|
{
|
||||||
|
@ -6,6 +6,7 @@ class Console
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
Console(GrafPtr port, Rect r);
|
Console(GrafPtr port, Rect r);
|
||||||
|
~Console();
|
||||||
void Draw();
|
void Draw();
|
||||||
void putch(char c);
|
void putch(char c);
|
||||||
std::string ReadLine();
|
std::string ReadLine();
|
||||||
|
Loading…
Reference in New Issue
Block a user