mirror of
https://github.com/yuzu-emu/yuzu-mainline.git
synced 2024-06-14 18:19:28 +02:00
15 lines
278 B
C++
15 lines
278 B
C++
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace Core::Frontend {
|
|
|
|
class Applet {
|
|
public:
|
|
virtual ~Applet() = default;
|
|
virtual void Close() const = 0;
|
|
};
|
|
|
|
} // namespace Core::Frontend
|