1
0
mirror of synced 2024-11-13 18:50:53 +01:00
ImHex/plugins/builtin/include/content/views/view_patches.hpp

25 lines
383 B
C++
Raw Normal View History

2020-11-29 02:06:41 +01:00
#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/views/view.hpp>
2020-11-29 02:06:41 +01:00
#include <optional>
2021-12-07 22:47:41 +01:00
namespace hex::plugin::builtin {
2020-11-29 02:06:41 +01:00
namespace prv { class Provider; }
class ViewPatches : public View {
public:
explicit ViewPatches();
2020-11-29 02:06:41 +01:00
~ViewPatches() override;
void drawContent() override;
2020-11-29 02:06:41 +01:00
private:
u64 m_selectedPatch;
};
}