Base Process class, to be expanded

This commit is contained in:
2026-08-04 20:09:50 +02:00
parent 6e3590d532
commit ab0090ddb1
8 changed files with 214 additions and 2 deletions
+4 -1
View File
@@ -1,6 +1,9 @@
#include "xrbx/xrbx.h"
#include <format>
#include <iostream>
int main() {
helloWorld();
Process rbx(L"notepad.exe");
std::cout << std::format("Image Base: {:X}", uintptr_t(rbx.imageBase())) << std::endl;
return 0;
}