mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-26 01:56:34 -05: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();
|
|
};
|