Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include "memory/memory.hpp"
- int main() {
- Memory.Attach("Testing.exe");
- std::cout << Memory.Read<int>(0x0095F758) << "\n";
- Sleep(5000);
- Memory.Write<int>(0x0095F758, 777);
- Sleep(10);
- std::cout << Memory.Read<int>(0x0095F758) << "\n";
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement