2020-11-29 02:06:41 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-01-13 17:28:27 +01:00
|
|
|
#include <imgui.h>
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/ui/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
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
namespace prv {
|
|
|
|
class Provider;
|
|
|
|
}
|
2020-11-29 02:06:41 +01:00
|
|
|
|
|
|
|
class ViewPatches : public View {
|
|
|
|
public:
|
2020-12-27 15:39:06 +01:00
|
|
|
explicit ViewPatches();
|
2020-11-29 02:06:41 +01:00
|
|
|
~ViewPatches() override;
|
|
|
|
|
2020-12-22 18:10:01 +01:00
|
|
|
void drawContent() override;
|
2020-11-29 02:06:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
u64 m_selectedPatch;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|