AboutDialog.h 239 B

1234567891011121314
  1. // Copyright 2016 Dolphin Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <QDialog>
  5. class AboutDialog final : public QDialog
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit AboutDialog(QWidget* parent = nullptr);
  10. };