HelpDialog.cpp 565 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #include <Window/HelpDialog/HelpDialog.h>
  9. namespace MaterialEditor
  10. {
  11. HelpDialog::HelpDialog(QWidget* parent)
  12. : QDialog(parent)
  13. , m_ui(new Ui::HelpDialogWidget)
  14. {
  15. m_ui->setupUi(this);
  16. }
  17. HelpDialog::~HelpDialog() = default;
  18. } // namespace MaterialEditor
  19. #include <Window/HelpDialog/moc_HelpDialog.cpp>