1
0
Fork 0
forked from suyu/suyu
suyu/src/core/frontend/applets/applet.h
2023-03-25 14:49:43 -04:00

14 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