void Tutorial::idleFunction()
{
  if (_idleFunc != nullptr) {
    _idleFunc();
  }
}
void Engine::callIdle( void ) {
  if (_idleFunc) _idleFunc();
}