2020-11-29 01:06:41 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex.hpp>
|
|
|
|
|
2021-01-13 16:28:27 +00:00
|
|
|
#include <imgui.h>
|
2022-02-01 17:09:40 +00:00
|
|
|
#include <hex/ui/view.hpp>
|
2020-11-29 01:06:41 +00:00
|
|
|
|
|
|
|
#include <optional>
|
|
|
|
|
2021-12-07 21:47:41 +00:00
|
|
|
namespace hex::plugin::builtin {
|
2020-11-29 01:06:41 +00:00
|
|
|
|
|
|
|
class ViewPatches : public View {
|
|
|
|
public:
|
2020-12-27 14:39:06 +00:00
|
|
|
explicit ViewPatches();
|
2022-09-28 13:01:43 +00:00
|
|
|
~ViewPatches() override = default;
|
2020-11-29 01:06:41 +00:00
|
|
|
|
2020-12-22 17:10:01 +00:00
|
|
|
void drawContent() override;
|
2020-11-29 01:06:41 +00:00
|
|
|
|
|
|
|
private:
|
2022-03-04 19:52:39 +00:00
|
|
|
u64 m_selectedPatch = 0x00;
|
2020-11-29 01:06:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|