mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-18 10:50:05 +00:00
15 lines
208 B
C++
15 lines
208 B
C++
// Copyright 2026 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QWidget>
|
|
|
|
class TriforcePane final : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TriforcePane();
|
|
};
|