1
0
mirror of synced 2025-01-30 03:27:25 +01:00
2023-11-21 13:47:50 +01:00

22 lines
415 B
C++

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