Window's subsystem is now initialized by NzUtility

Optimized Image
This commit is contained in:
Lynix
2012-05-25 12:23:04 +02:00
parent f55cf96713
commit 7659fdf460
7 changed files with 64 additions and 54 deletions

View File

@@ -473,3 +473,13 @@ void NzWindow::PushEvent(const NzEvent& event)
}
#endif
}
bool NzWindow::Initialize()
{
return NzWindowImpl::Initialize();
}
void NzWindow::Uninitialize()
{
NzWindowImpl::Uninitialize();
}