destroy method
Implementation
bool destroy() {
  if (this != nullptr) {
    // 2106
    sdlDestroyWindow(this);
    return true;
  }
  return false;
}bool destroy() {
  if (this != nullptr) {
    // 2106
    sdlDestroyWindow(this);
    return true;
  }
  return false;
}