├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── Preview.png ├── README.md ├── TOG.App ├── Definitions.cs ├── Definitions │ ├── NamespaceDefinition.cs │ └── OffsetDefinition.cs ├── Models │ ├── ConsistencyInfo.cs │ └── ConsistencyInfoEntry.cs ├── Program.cs ├── TOG.App.csproj ├── Templates │ └── CppTemplate.cs ├── Unispect │ ├── Classes │ │ ├── BasicMemory.cs │ │ ├── BoolToVisConverter.cs │ │ ├── BooleanToVisibilityConverter.cs │ │ ├── CacheStore.cs │ │ ├── Inspector.cs │ │ ├── Log.cs │ │ ├── MemoryProxy.cs │ │ ├── ModuleProxy.cs │ │ ├── Serializer.cs │ │ ├── Settings.cs │ │ ├── Structs │ │ │ ├── FieldDefinition.cs │ │ │ ├── Generics.cs │ │ │ ├── InternalHashTable.cs │ │ │ ├── MonoType.cs │ │ │ └── TypeDefinition.cs │ │ ├── UnispectPluginAttribute.cs │ │ ├── Utilities.cs │ │ └── Wrappers │ │ │ ├── FieldDefWrapper.cs │ │ │ └── TypeDefWrapper.cs │ └── Enums │ │ ├── Offsets.cs │ │ ├── TypeEnum.cs │ │ └── UnknownPrefix.cs └── Usings.cs ├── TOG.Common ├── Exceptions │ └── LastWin32Exception.cs ├── Helpers │ ├── Logger.cs │ └── ProcessHelper.cs ├── TOG.Common.csproj ├── Templates │ └── BaseTemplate.cs ├── Tools.cs └── Usings.cs └── TOG.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/Preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/README.md -------------------------------------------------------------------------------- /TOG.App/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Definitions.cs -------------------------------------------------------------------------------- /TOG.App/Definitions/NamespaceDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Definitions/NamespaceDefinition.cs -------------------------------------------------------------------------------- /TOG.App/Definitions/OffsetDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Definitions/OffsetDefinition.cs -------------------------------------------------------------------------------- /TOG.App/Models/ConsistencyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Models/ConsistencyInfo.cs -------------------------------------------------------------------------------- /TOG.App/Models/ConsistencyInfoEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Models/ConsistencyInfoEntry.cs -------------------------------------------------------------------------------- /TOG.App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Program.cs -------------------------------------------------------------------------------- /TOG.App/TOG.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/TOG.App.csproj -------------------------------------------------------------------------------- /TOG.App/Templates/CppTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Templates/CppTemplate.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/BasicMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/BasicMemory.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/BoolToVisConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/BoolToVisConverter.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/CacheStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/CacheStore.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Inspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Inspector.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Log.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/MemoryProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/MemoryProxy.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/ModuleProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/ModuleProxy.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Serializer.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Settings.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Structs/FieldDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Structs/FieldDefinition.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Structs/Generics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Structs/Generics.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Structs/InternalHashTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Structs/InternalHashTable.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Structs/MonoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Structs/MonoType.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Structs/TypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Structs/TypeDefinition.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/UnispectPluginAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/UnispectPluginAttribute.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Utilities.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Wrappers/FieldDefWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Wrappers/FieldDefWrapper.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Classes/Wrappers/TypeDefWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Classes/Wrappers/TypeDefWrapper.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Enums/Offsets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Enums/Offsets.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Enums/TypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Enums/TypeEnum.cs -------------------------------------------------------------------------------- /TOG.App/Unispect/Enums/UnknownPrefix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Unispect/Enums/UnknownPrefix.cs -------------------------------------------------------------------------------- /TOG.App/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.App/Usings.cs -------------------------------------------------------------------------------- /TOG.Common/Exceptions/LastWin32Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.Common/Exceptions/LastWin32Exception.cs -------------------------------------------------------------------------------- /TOG.Common/Helpers/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.Common/Helpers/Logger.cs -------------------------------------------------------------------------------- /TOG.Common/Helpers/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.Common/Helpers/ProcessHelper.cs -------------------------------------------------------------------------------- /TOG.Common/TOG.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.Common/TOG.Common.csproj -------------------------------------------------------------------------------- /TOG.Common/Templates/BaseTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.Common/Templates/BaseTemplate.cs -------------------------------------------------------------------------------- /TOG.Common/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.Common/Tools.cs -------------------------------------------------------------------------------- /TOG.Common/Usings.cs: -------------------------------------------------------------------------------- 1 | global using System.Runtime.InteropServices; 2 | 3 | 4 | -------------------------------------------------------------------------------- /TOG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickcjk/TOG/HEAD/TOG.sln --------------------------------------------------------------------------------