1
0
mirror of synced 2024-11-14 19:17:42 +01:00
ImHex/include/views/highlight.hpp
2020-11-10 21:31:04 +01:00

20 lines
336 B
C++

#pragma once
#include <hex.hpp>
#include <string>
namespace hex {
struct Highlight {
Highlight(u64 offset, size_t size, u32 color, std::string name)
: offset(offset), size(size), color(color), name(name) {
}
u64 offset;
size_t size;
u32 color;
std::string name;
};
}