Initial commit: DayZ memory C++ port with DMA backend and overlay

This commit is contained in:
67
2026-06-16 15:18:44 +08:00
commit f04e38b8ae
163 changed files with 163380 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#pragma once
#include <string>
#include "imgui.h"
class c_elements
{
public:
c_vec2 padding{ 10, 10 };
float child_width;
float tab_window_width;
struct
{
c_text name{ "Lumin" };
c_vec2 size{ 570, 354 };
float rounding{ 12 };
} window;
};
inline std::unique_ptr<c_elements> elements = std::make_unique<c_elements>();