mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
85be4b571c
git-svn-id: svn://localhost@391 8062f311-0dae-4547-b526-b8ab9ac864a5
26 lines
438 B
C++
26 lines
438 B
C++
#include "ConsoleManager.h"
|
|
#ifdef ___WXMSW___
|
|
#include <wx/msw/winundef.h>
|
|
#endif
|
|
#include "ConsoleFrame.h"
|
|
#ifdef ___WXMSW___
|
|
#include <wx/msw/winundef.h>
|
|
#endif
|
|
|
|
ConsoleManager *ConsoleManager::_singleton = NULL;
|
|
|
|
ConsoleManager::ConsoleManager()
|
|
{
|
|
console = new ConsoleFrame(0);
|
|
}
|
|
|
|
ConsoleManager::~ConsoleManager()
|
|
{
|
|
console->Destroy();
|
|
}
|
|
|
|
void ConsoleManager::ShowConsole()
|
|
{
|
|
console->Show();
|
|
}
|