├── LICENSE ├── Memory Scanner.sln ├── Memory Scanner.v11.suo ├── Memory Scanner ├── App.config ├── Classes │ ├── ByteSearch.cs │ ├── MemorySearch.cs │ └── Validator.cs ├── Controls │ └── AeroListView.cs ├── Forms │ ├── EditDialog.Designer.cs │ ├── EditDialog.cs │ ├── EditDialog.resx │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ ├── ProcessDialog.Designer.cs │ ├── ProcessDialog.cs │ └── ProcessDialog.resx ├── Memory Scanner.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── app.manifest └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/LICENSE -------------------------------------------------------------------------------- /Memory Scanner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner.sln -------------------------------------------------------------------------------- /Memory Scanner.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner.v11.suo -------------------------------------------------------------------------------- /Memory Scanner/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/App.config -------------------------------------------------------------------------------- /Memory Scanner/Classes/ByteSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Classes/ByteSearch.cs -------------------------------------------------------------------------------- /Memory Scanner/Classes/MemorySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Classes/MemorySearch.cs -------------------------------------------------------------------------------- /Memory Scanner/Classes/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Classes/Validator.cs -------------------------------------------------------------------------------- /Memory Scanner/Controls/AeroListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Controls/AeroListView.cs -------------------------------------------------------------------------------- /Memory Scanner/Forms/EditDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/EditDialog.Designer.cs -------------------------------------------------------------------------------- /Memory Scanner/Forms/EditDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/EditDialog.cs -------------------------------------------------------------------------------- /Memory Scanner/Forms/EditDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/EditDialog.resx -------------------------------------------------------------------------------- /Memory Scanner/Forms/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/Main.Designer.cs -------------------------------------------------------------------------------- /Memory Scanner/Forms/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/Main.cs -------------------------------------------------------------------------------- /Memory Scanner/Forms/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/Main.resx -------------------------------------------------------------------------------- /Memory Scanner/Forms/ProcessDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/ProcessDialog.Designer.cs -------------------------------------------------------------------------------- /Memory Scanner/Forms/ProcessDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/ProcessDialog.cs -------------------------------------------------------------------------------- /Memory Scanner/Forms/ProcessDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Forms/ProcessDialog.resx -------------------------------------------------------------------------------- /Memory Scanner/Memory Scanner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Memory Scanner.csproj -------------------------------------------------------------------------------- /Memory Scanner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Program.cs -------------------------------------------------------------------------------- /Memory Scanner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Memory Scanner/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Memory Scanner/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Properties/Resources.resx -------------------------------------------------------------------------------- /Memory Scanner/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Memory Scanner/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/Properties/Settings.settings -------------------------------------------------------------------------------- /Memory Scanner/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/Memory Scanner/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Retrobyte/Memory-Scanner/HEAD/README.md --------------------------------------------------------------------------------