├── .gitattributes ├── .gitignore ├── README.md ├── main.cpp ├── mempatch.cpp ├── mempatch.h └── stdafx.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PELock/CMemPatch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PELock/CMemPatch/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PELock/CMemPatch/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PELock/CMemPatch/HEAD/main.cpp -------------------------------------------------------------------------------- /mempatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PELock/CMemPatch/HEAD/mempatch.cpp -------------------------------------------------------------------------------- /mempatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PELock/CMemPatch/HEAD/mempatch.h -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PELock/CMemPatch/HEAD/stdafx.h --------------------------------------------------------------------------------