Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 516 Bytes

File metadata and controls

16 lines (13 loc) · 516 Bytes

A simple memory class.

To initialize the class properly, you do the following:

try {
	forceinline::memory_manager memory( "process_name.exe" );
	
	//Do whatever you want to
} catch ( const std::exception& e ) {
	std::cout << e.what( ) << std::endl;
}

Everything is commented and should be easily understandable. If not, please add a comment and issue a pull request or create an issue. Thank you.

License

This project is licensed under the MIT License - see the LICENSE file for details