Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gurrenm3 authored Sep 12, 2021
1 parent 7c194b3 commit 88c5e27
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ var playerHealth = new MemoryAddress<int>("put your address here");
var currentHealth = playerHealth.Read(); // getting the value of an address
playerHealth.Write(1000); // setting the value of the address
```

## Why does this exist?
The leading Memory libraries are great, but can be bulky and poorly optimized. If you want to just read or write values in memory, they are not the best option. This library uses OOP programming to achieve ~3x faster read/write speeds than the leading libraries. Additionally, this library comes with a handful of helpful extension methods that you'll probably need if you're dealing with Memory. Finally, everything in this library is documented, making it easy to understand what's happening.

0 comments on commit 88c5e27

Please sign in to comment.