#include "memory.hpp" #include "overlay.hpp" #include int main() { run_overlay(); /* if (!open_device()) return -1; int pid = get_pid("nsnake"); if (!open_process(pid)) return -1; uintptr_t addr = get_module("nsnake"); printf("module : 0x%lx\n", addr); WPM(addr + 0x1d71510, 1337); int out = RPM(addr + 0x1d71510); printf("Value from RPM: %d\n", out); close_device(); */ return 0; }