mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
28 lines
711 B
C++
28 lines
711 B
C++
namespace ImGui
|
|
{
|
|
struct MemoryEditor
|
|
{
|
|
bool AllowEdits;
|
|
bool HexII;
|
|
int Rows;
|
|
int DataEditingAddr;
|
|
bool DataEditingTakeFocus;
|
|
char DataInput[32];
|
|
char AddrInput[32];
|
|
|
|
MemoryEditor()
|
|
{
|
|
AllowEdits = true;
|
|
HexII = true;
|
|
Rows = 16;
|
|
DataEditingAddr = -1;
|
|
DataEditingTakeFocus = false;
|
|
strcpy(DataInput, "");
|
|
strcpy(AddrInput, "");
|
|
}
|
|
|
|
void Draw(void* mem_data, int mem_size, int base_display_addr = 0);
|
|
void Draw(const void* mem_data, int mem_size, int base_display_addr = 0);
|
|
};
|
|
} // namespace ImGui
|