22 lines
400 B
C++
22 lines
400 B
C++
#pragma once
|
|
|
|
#include <hex.hpp>
|
|
|
|
#include <hex/ui/view.hpp>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
class ViewPatches : public View {
|
|
public:
|
|
explicit ViewPatches();
|
|
~ViewPatches() override = default;
|
|
|
|
void drawContent() override;
|
|
void drawAlwaysVisible() override;
|
|
|
|
private:
|
|
u64 m_selectedPatch = 0x00;
|
|
PerProvider<u32> m_numPatches;
|
|
};
|
|
|
|
} |