Fixed missing RenderWindow::IsValid code

Former-commit-id: bb2b8ae50755198fd0af9db1764eb01935ff1ee7
This commit is contained in:
Lynix 2013-03-05 13:34:30 +01:00
parent 0e49132cd9
commit 7e60bc2d81
1 changed files with 5 additions and 0 deletions

View File

@ -237,6 +237,11 @@ bool NzRenderWindow::IsRenderable() const
return m_impl != nullptr; // Si m_impl est valide, alors m_context l'est aussi
}
bool NzRenderWindow::IsValid() const
{
return m_impl != nullptr;
}
void NzRenderWindow::SetFramerateLimit(unsigned int limit)
{
m_framerateLimit = limit;