├── .gitattributes ├── .gitignore ├── Memory.h ├── PatternScanner.h ├── README.md ├── RTTI.h ├── RTTIDumper.sln ├── RTTIDumper.vcxproj ├── RTTIDumper.vcxproj.filters ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── igor2_rtti1.png ├── pch.cpp └── pch.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/.gitignore -------------------------------------------------------------------------------- /Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/Memory.h -------------------------------------------------------------------------------- /PatternScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/PatternScanner.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/README.md -------------------------------------------------------------------------------- /RTTI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/RTTI.h -------------------------------------------------------------------------------- /RTTIDumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/RTTIDumper.sln -------------------------------------------------------------------------------- /RTTIDumper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/RTTIDumper.vcxproj -------------------------------------------------------------------------------- /RTTIDumper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/RTTIDumper.vcxproj.filters -------------------------------------------------------------------------------- /dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/dllmain.cpp -------------------------------------------------------------------------------- /dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/dllmain.h -------------------------------------------------------------------------------- /framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/framework.h -------------------------------------------------------------------------------- /igor2_rtti1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/igor2_rtti1.png -------------------------------------------------------------------------------- /pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/pch.cpp -------------------------------------------------------------------------------- /pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrandpaGameHacker/RTTIDumper/HEAD/pch.h --------------------------------------------------------------------------------