mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-02 15:32:52 +00:00
17 lines
337 B
C++
17 lines
337 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
namespace ImGui {
|
|
|
|
class Layer {
|
|
public:
|
|
virtual ~Layer() = default;
|
|
static void AddLayer(Layer* layer);
|
|
static void RemoveLayer(Layer* layer);
|
|
|
|
virtual void Draw() = 0;
|
|
};
|
|
|
|
} // namespace ImGui
|