├── .gitignore ├── .gitmodules ├── COPYING.GPLv3 ├── MemEngine360.Avalonia ├── AboutView.axaml ├── AboutView.axaml.cs ├── App.axaml ├── App.axaml.cs ├── Icons │ ├── icon-16.bmp │ ├── icon-32.bmp │ └── icon.ico ├── Keymap.xml ├── Keymap.xsd ├── MemEngine360.Avalonia.csproj ├── MemoryEngineApplication.cs ├── MemoryEngineManagerImpl.cs ├── Program.cs ├── ShowActivityListCommand.cs ├── SplashScreenWindow.axaml ├── SplashScreenWindow.axaml.cs ├── TaskSequenceSerializer.cs ├── app.manifest └── publish.bat ├── MemEngine360.BaseFrontEnd ├── Commands │ ├── BaseScanCommandUsage.cs │ ├── EngineButtonCommandUsage.cs │ ├── EngineConnectionReliantButtonCommandUsage.cs │ └── NotBusyReliantButtonCommandUsage.cs ├── Connections │ ├── OpenTestConnectionView.axaml │ └── OpenTestConnectionView.axaml.cs ├── Debugging │ ├── DebuggerCommandUsage.cs │ ├── DebuggerView.axaml │ ├── DebuggerView.axaml.cs │ ├── DebuggerViewServiceImpl.cs │ ├── FunctionEntryListBox.cs │ ├── RegisterEntryListBox.cs │ ├── ThreadEntryListBox.cs │ └── ThreadMemoryAutoRefresh.cs ├── EngineView.axaml ├── EngineView.axaml.cs ├── EventViewing │ ├── ConsoleEventViewerView.axaml │ ├── ConsoleEventViewerView.axaml.cs │ ├── ConsoleEventViewerViewEx.axaml │ ├── ConsoleEventViewerViewEx.axaml.cs │ ├── IConsoleEventArgsInfoControl.cs │ └── XbdmEvents │ │ ├── ConsoleEventArgsInfoControlXbdmEvent.axaml │ │ ├── ConsoleEventArgsInfoControlXbdmEvent.axaml.cs │ │ ├── ConsoleEventArgsInfoControlXbdmEventAssert.axaml │ │ ├── ConsoleEventArgsInfoControlXbdmEventAssert.axaml.cs │ │ ├── ConsoleEventArgsInfoControlXbdmEventDebugString.axaml │ │ ├── ConsoleEventArgsInfoControlXbdmEventDebugString.axaml.cs │ │ └── ConsoleEventListBox.cs ├── FileBrowsing │ ├── FileBrowserServiceImpl.cs │ ├── FileBrowserTreeView.cs │ ├── FileBrowserTreeViewItem.cs │ ├── FileBrowserTreeViewStyles.axaml │ ├── FileTreeExplorerView.axaml │ └── FileTreeExplorerView.axaml.cs ├── FileConnections │ ├── BinaryFileConnection.cs │ ├── ConnectionTypeBinaryFile.cs │ ├── OpenBinaryFileInfo.cs │ ├── OpenBinaryFileView.axaml │ └── OpenBinaryFileView.axaml.cs ├── MemEngine360.BaseFrontEnd.csproj ├── MemEngineConfigurationPageStyles.axaml ├── MemRegions │ ├── MemoryRegionProtectionConverter.cs │ ├── USizeToTextConverter.cs │ ├── XboxMemoryRegionViewerUIControl.axaml │ └── XboxMemoryRegionViewerUIControl.axaml.cs ├── MemoryEngineConfigurationPageControl.cs ├── MemoryEngineConfigurationPageControlV2.cs ├── ModTools │ ├── Commands │ │ ├── BaseModToolCommandUsage.cs │ │ ├── ConnectModToolToConsoleCommandUsage.cs │ │ └── RestartModToolCommandUsage.cs │ ├── Controls │ │ ├── BaseControlBindingHelper.cs │ │ ├── ControlMTButton.cs │ │ ├── ControlMTDockPanel.cs │ │ ├── ControlMTGridPanel.cs │ │ ├── ControlMTStackPanel.cs │ │ ├── ControlMTTextBlock.cs │ │ └── ControlMTTextBox.cs │ ├── DesktopModToolViewServiceImpl.cs │ ├── ModToolManagerView.axaml │ ├── ModToolManagerView.axaml.cs │ ├── ModToolTabControl.cs │ ├── ModToolTabItem.cs │ ├── ModToolView.axaml │ └── ModToolView.axaml.cs ├── PointerScanning │ ├── PointerScanResultListBox.cs │ ├── PointerScanResultToolTip.axaml │ ├── PointerScanResultToolTip.axaml.cs │ ├── PointerScanServiceImpl.cs │ ├── PointerScannerView.axaml │ └── PointerScannerView.axaml.cs ├── SavedAddressing │ ├── AddressTableTreeView.cs │ ├── AddressTableTreeViewItem.cs │ └── AddressTableTreeViewStyles.axaml ├── ScanResultCurrentValueConverter.cs ├── ScanningOrderListBox.cs ├── Scripting │ ├── Commands │ │ ├── BaseScriptCommandUsage.cs │ │ ├── ConnectScriptToConsoleCommandUsage.cs │ │ ├── RunScriptCommandUsage.cs │ │ └── StopScriptCommandUsage.cs │ ├── DesktopScriptingViewServiceImpl.cs │ ├── LuaScriptDocument.cs │ ├── LuaScriptDocumentServiceImpl.cs │ ├── LuaTextEditor.cs │ ├── ScriptTabControl.cs │ ├── ScriptTabItem.cs │ ├── ScriptingView.axaml │ └── ScriptingView.axaml.cs ├── Services │ ├── Connectivity │ │ ├── ConsoleConnectionManagerImpl.cs │ │ ├── ConsoleTypeListBox.cs │ │ ├── ConsoleTypeListBoxItem.cs │ │ ├── ConsoleTypeToolTip.axaml │ │ ├── ConsoleTypeToolTip.axaml.cs │ │ ├── IConsoleConnectivityControl.cs │ │ ├── OpenConnectionView.axaml │ │ └── OpenConnectionView.axaml.cs │ ├── HexEditing │ │ ├── AutoRefreshLayer.cs │ │ ├── ChangedRegionLayer.cs │ │ ├── DataInspectorControl.axaml │ │ ├── DataInspectorControl.axaml.cs │ │ ├── HexEditorChangeManager.cs │ │ ├── MemoryViewerView.axaml │ │ ├── MemoryViewerView.axaml.cs │ │ └── MemoryViewerViewServiceImpl.cs │ ├── SavedResultDataTypeEditorUserInputControl.axaml │ └── SavedResultDataTypeEditorUserInputControl.axaml.cs ├── StructViewing │ ├── DesktopStructViewerServiceImpl.cs │ ├── StructViewerTreeView.cs │ ├── StructViewerTreeViewItem.cs │ └── StructViewerTreeViewStyles.axaml ├── TaskSequencing │ ├── Commands │ │ ├── BaseSequenceCommandUsage.cs │ │ ├── BaseSequenceManagerCommandUsage.cs │ │ ├── ConnectToDedicatedConsoleCommandUsage.cs │ │ ├── OpenConsoleConnectionInSequencerCommandUsage.cs │ │ └── RunSequenceCommandUsage.cs │ ├── ConditionSourcePresenter.cs │ ├── Conditions │ │ ├── BaseConditionListContent.cs │ │ ├── CompareMemoryConditionListContent.axaml │ │ ├── CompareMemoryConditionListContent.axaml.cs │ │ ├── ConditionsListBox.cs │ │ ├── ConditionsListBoxItem.cs │ │ ├── EditConditionOutputModeServiceImpl.cs │ │ ├── EditConditionOutputModeView.axaml │ │ └── EditConditionOutputModeView.axaml.cs │ ├── DataHandlers │ │ ├── ConstantDataValueHandler.cs │ │ ├── DataProviderHandler.cs │ │ └── RandomNumericDataValueHandler.cs │ ├── GridSplitterNonHitListBoxItem.cs │ ├── OperationListPresenter.cs │ ├── Operations │ │ ├── EditorContent │ │ │ ├── BaseOperationEditorContent.cs │ │ │ ├── Containers │ │ │ │ ├── OperationEditorContentContainerListBox.cs │ │ │ │ ├── OperationEditorContentContainerListBoxItem.cs │ │ │ │ └── OperationEditorContentModel.cs │ │ │ ├── DelayOperationEditorContent.axaml │ │ │ ├── DelayOperationEditorContent.axaml.cs │ │ │ ├── RandomTriggerEditorContent.axaml │ │ │ ├── RandomTriggerEditorContent.axaml.cs │ │ │ ├── SetMemoryOpModeEditorContent.axaml │ │ │ ├── SetMemoryOpModeEditorContent.axaml.cs │ │ │ ├── SetMemoryOperationEditorContent.axaml │ │ │ └── SetMemoryOperationEditorContent.axaml.cs │ │ ├── ListContent │ │ │ ├── BaseOperationListContent.cs │ │ │ ├── DelayOperationListContent.axaml │ │ │ ├── DelayOperationListContent.axaml.cs │ │ │ ├── JumpToOperationListContent.axaml │ │ │ ├── JumpToOperationListContent.axaml.cs │ │ │ ├── LabelOperationListContent.axaml │ │ │ ├── LabelOperationListContent.axaml.cs │ │ │ ├── SetMemoryOperationListContent.axaml │ │ │ ├── SetMemoryOperationListContent.axaml.cs │ │ │ ├── StopSequenceOperationListContent.axaml │ │ │ └── StopSequenceOperationListContent.axaml.cs │ │ ├── OperationListBox.cs │ │ └── OperationListBoxItem.cs │ ├── SequenceListBox.cs │ ├── SequenceListBoxItem.cs │ ├── TaskSequencerServiceImpl.cs │ ├── TaskSequencerView.axaml │ └── TaskSequencerView.axaml.cs ├── Themes │ ├── MemoryEngineBrushLoader.cs │ └── MemoryEngineThemes.axaml ├── Utils │ └── BinderParsingUtils.cs └── XboxBase │ ├── Modules │ ├── EmptyStringToTextConverter.cs │ ├── ModuleListBox.cs │ ├── ModuleListBoxItem.cs │ ├── ModuleViewerView.axaml │ └── ModuleViewerView.axaml.cs │ └── ShowModulesCommand.cs ├── MemEngine360.sln ├── MemEngine360 ├── BaseTransferableDataViewModel.cs ├── Commands │ ├── ATM │ │ ├── AddSavedAddressCommand.cs │ │ ├── AddSelectedScanResultsToSavedAddressListCommand.cs │ │ ├── BaseCopyAddressTableEntryCommand.cs │ │ ├── BaseSavedAddressSelectionCommand.cs │ │ ├── ClearSavedAddressesCommand.cs │ │ ├── CopyAbsoluteAddressToClipboardCommand.cs │ │ ├── CopyAddressToClipboardCommand.cs │ │ ├── CopySavedAddressValuesToClipboardCommand.cs │ │ ├── DeleteSelectedSavedAddressesCommand.cs │ │ ├── DuplicateSelectedSavedAddressesCommand.cs │ │ ├── EditSavedAddressAddressCommand.cs │ │ ├── EditSavedAddressDataTypeCommand.cs │ │ ├── EditSavedAddressDescriptionCommand.cs │ │ ├── EditSavedAddressValueCommand.cs │ │ ├── GroupEntriesCommand.cs │ │ ├── ToggleSavedAddressAutoRefreshCommand.cs │ │ └── XML │ │ │ ├── OpenXMLFileCommand.cs │ │ │ ├── SaveSavedAddressesToFileCommand.cs │ │ │ └── XmlBaseAddressEntry.cs │ ├── BaseMemoryEngineCommand.cs │ ├── BaseRemoteConsoleCommand.cs │ ├── CancelScanCommand.cs │ ├── CopyScanResultsToClipboardCommand.cs │ ├── DeleteSelectedScanResultsCommand.cs │ ├── DumpMemoryCommand.cs │ ├── EditScanResultValueCommand.cs │ ├── FirstScanCommand.cs │ ├── NextScanCommand.cs │ ├── OpenConsoleConnectionDialogCommand.cs │ ├── OpenConsoleConnectionInSequencerCommand.cs │ ├── RefreshSavedAddressesCommand.cs │ ├── ResetScanCommand.cs │ ├── ResetScanOptionsCommand.cs │ ├── SelectRangeFromMemoryRegionCommand.cs │ ├── ShowConsoleEventViewerCommand.cs │ ├── ShowMemoryRegionsCommand.cs │ ├── ShowMemoryViewCommand.cs │ ├── ShowPointerScannerCommand.cs │ └── StandardEngineMessages.cs ├── Configs │ ├── BasicApplicationConfiguration.cs │ └── MemoryEngineConfigurationPage.cs ├── Connections │ ├── AddressRange.cs │ ├── BaseConsoleConnection.cs │ ├── ConsoleConnectionManager.cs │ ├── Features │ │ ├── IConsoleFeature.cs │ │ ├── IFeatureDiskEjection.cs │ │ ├── IFeatureFileSystemInfo.cs │ │ ├── IFeatureIceCubes.cs │ │ ├── IFeatureMemoryRegions.cs │ │ ├── IFeaturePowerFunctions.cs │ │ ├── IFeatureSystemEvents.cs │ │ ├── IFeatureXbox360Xbdm.cs │ │ ├── IFeatureXboxDebugging.cs │ │ ├── IFeatureXboxExecutionState.cs │ │ ├── IFeatureXboxJRPC2.cs │ │ ├── IFeatureXboxNotifications.cs │ │ └── IFeatureXboxThreads.cs │ ├── IConnectionLockPair.cs │ ├── IConsoleConnection.cs │ ├── INetworkConsoleConnection.cs │ ├── IOpenConnectionView.cs │ ├── MemoryRegion.cs │ ├── OpenConnectionInfo.cs │ ├── RegisteredConnectionType.cs │ ├── Testing │ │ ├── ConnectionTypeTest.cs │ │ ├── TestConnectionInfo.cs │ │ └── TestConsoleConnection.cs │ ├── UserConnectionInfo.cs │ └── XboxThread.cs ├── Engine │ ├── AddressParsing.cs │ ├── Addressing │ │ ├── DynamicAddress.cs │ │ ├── IMemoryAddress.cs │ │ ├── PatternAddress.cs │ │ └── StaticAddress.cs │ ├── BusyLock.cs │ ├── ConnectionAction.cs │ ├── ConnectionChangeCause.cs │ ├── DataValueUtils.cs │ ├── Debugging │ │ ├── Commands │ │ │ ├── BaseDebuggerCommand.cs │ │ │ ├── DebugStepCommand.cs │ │ │ ├── FreezeConsoleCommand.cs │ │ │ ├── GoToDebugMemoryCommand.cs │ │ │ ├── OpenDebuggerConnectionCommand.cs │ │ │ ├── RefreshAllCommand.cs │ │ │ ├── RefreshRegistersCommand.cs │ │ │ ├── ResumeThreadCommand.cs │ │ │ ├── ShowDebuggerCommand.cs │ │ │ ├── SuspendThreadCommand.cs │ │ │ └── UnfreezeConsoleCommand.cs │ │ ├── ConsoleDebugger.cs │ │ ├── FunctionCallEntry.cs │ │ ├── IDebuggerViewService.cs │ │ ├── IDebuggerWindow.cs │ │ ├── RegisterEntry.cs │ │ ├── ThreadContext.cs │ │ ├── ThreadEntry.cs │ │ └── Unwinder.cs │ ├── Events │ │ ├── ConsoleSystemEventArgs.cs │ │ └── XbdmEvents │ │ │ ├── XbdmEventArgs.cs │ │ │ ├── XbdmEventArgsAssert.cs │ │ │ ├── XbdmEventArgsBreakpoint.cs │ │ │ ├── XbdmEventArgsCreateThread.cs │ │ │ ├── XbdmEventArgsDebugString.cs │ │ │ ├── XbdmEventArgsException.cs │ │ │ ├── XbdmEventArgsExecutionState.cs │ │ │ ├── XbdmEventArgsExternal.cs │ │ │ ├── XbdmEventArgsFiber.cs │ │ │ ├── XbdmEventArgsModuleLoad.cs │ │ │ ├── XbdmEventArgsNotification.cs │ │ │ ├── XbdmEventArgsRip.cs │ │ │ ├── XbdmEventArgsSection.cs │ │ │ ├── XbdmEventArgsTerminateThread.cs │ │ │ └── XbdmEventArgsThreadLife.cs │ ├── FileBrowsing │ │ ├── BaseFileTreeNode.cs │ │ ├── Commands │ │ │ ├── BaseFileExplorerCommand.cs │ │ │ ├── CreateAbsoluteDirectoryCommand.cs │ │ │ ├── CreateDirectoryInDirectoryCommand.cs │ │ │ ├── DeleteFilesCommand.cs │ │ │ ├── LaunchFileCommand.cs │ │ │ ├── MoveFileCommand.cs │ │ │ ├── RenameFileCommand.cs │ │ │ └── ShowFileBrowserCommand.cs │ │ ├── FileTreeExplorer.cs │ │ ├── FileTreeExplorerViewState.cs │ │ ├── FileTreeNodeDirectory.cs │ │ ├── FileTreeNodeFile.cs │ │ └── IFileBrowserService.cs │ ├── HexEditing │ │ ├── Commands │ │ │ ├── BaseHexEditorCommand.cs │ │ │ ├── ClearAutoScanRangeCommand.cs │ │ │ ├── GotoAddressCommand.cs │ │ │ ├── ReloadSelectionFromConsole.cs │ │ │ ├── SaveSelectionAsFileCommand.cs │ │ │ ├── SetAutoScanRangeAsSelectionCommand.cs │ │ │ └── UploadSelectionToConsoleCommand.cs │ │ ├── ConsoleHexBinarySource.cs │ │ ├── Endianness.cs │ │ ├── IHexEditorUI.cs │ │ ├── IMemoryViewerViewService.cs │ │ └── MemoryViewer.cs │ ├── IBusyToken.cs │ ├── IConsoleEventViewerService.cs │ ├── MemoryEngine.cs │ ├── MemoryEngineManager.cs │ ├── Modes │ │ ├── DataType.cs │ │ ├── FloatScanOption.cs │ │ ├── NumericScanType.cs │ │ └── StringType.cs │ ├── SavedAddressing │ │ ├── AddressTableEntry.cs │ │ ├── AddressTableGroupEntry.cs │ │ ├── AddressTableManager.cs │ │ └── BaseAddressTableEntry.cs │ ├── ScanResultViewModel.cs │ ├── Scanners │ │ ├── AnyTypeScanningContext.cs │ │ ├── DataTypedScanningContext.cs │ │ ├── FirstTypedScanTask.cs │ │ ├── ScanningContext.cs │ │ └── ValueScannerUtils.cs │ ├── ScanningOrderModel.cs │ ├── ScanningProcessor.cs │ ├── StructViewing │ │ ├── ClassBuilding │ │ │ ├── ClassType.cs │ │ │ ├── FieldElement.cs │ │ │ └── TypeDescriptor.cs │ │ ├── Entries │ │ │ ├── BaseStructViewerEntry.cs │ │ │ ├── StructViewerClassEntry.cs │ │ │ └── StructViewerFieldEntry.cs │ │ ├── IStructViewerService.cs │ │ ├── ShowStructViewerWindowCommand.cs │ │ └── StructViewerManager.cs │ ├── ToolManager.cs │ └── View │ │ ├── MemoryEngineViewState.cs │ │ └── ScanResultPanelViewState.cs ├── MemEngine360.csproj ├── MemoryPattern.cs ├── MessageBoxes.cs ├── ModTools │ ├── Commands │ │ ├── CloseModToolCommand.cs │ │ ├── ConnectModToolToConsoleCommand.cs │ │ ├── CopyModToolFilePathCommand.cs │ │ ├── CreateModToolCommand.cs │ │ ├── OpenModToolScriptFileCommand.cs │ │ ├── RenameModToolCommand.cs │ │ ├── RestartModToolCommand.cs │ │ ├── SaveAllModToolsCommand.cs │ │ ├── SaveModToolCommand.cs │ │ └── ShowModToolsWindowCommand.cs │ ├── Gui │ │ ├── BaseMTElement.cs │ │ ├── BaseMTPanel.cs │ │ ├── MTButton.cs │ │ ├── MTDockPanel.cs │ │ ├── MTGridPanel.cs │ │ ├── MTStackPanel.cs │ │ ├── MTTextBlock.cs │ │ ├── MTTextBox.cs │ │ └── ModToolGUI.cs │ ├── IModToolViewService.cs │ ├── LuaFeatures │ │ └── LuaGuiFunctions.cs │ ├── LuaModToolMachine.cs │ ├── ModTool.cs │ ├── ModToolManager.cs │ ├── ModToolManagerViewState.cs │ ├── ModToolTabContextRegistry.cs │ └── ModToolViewState.cs ├── PointerScanning │ ├── IPointerScanService.cs │ └── PointerScanner.cs ├── Scripting │ ├── Commands │ │ ├── AddNewScriptCommand.cs │ │ ├── CloseScriptCommand.cs │ │ ├── ConnectScriptToConsoleCommand.cs │ │ ├── CopyScriptFilePathCommand.cs │ │ ├── OpenScriptFileCommand.cs │ │ ├── RenameScriptCommand.cs │ │ ├── RunScriptCommand.cs │ │ ├── SaveAllScriptsCommand.cs │ │ ├── SaveScriptCommand.cs │ │ ├── ShowScriptingWindowCommand.cs │ │ └── StopScriptCommand.cs │ ├── CompilationFailureEventArgs.cs │ ├── ILuaMachine.cs │ ├── ILuaScriptDocument.cs │ ├── ILuaScriptDocumentService.cs │ ├── IScriptingViewService.cs │ ├── LuaFeatures │ │ ├── LuaEngineFunctions.cs │ │ └── LuaUtils.cs │ ├── LuaScriptMachine.cs │ ├── Script.cs │ ├── ScriptTabContextRegistry.cs │ ├── ScriptViewState.cs │ ├── ScriptingManager.cs │ └── ScriptingManagerViewState.cs ├── Sequencing │ ├── BaseSequenceCondition.cs │ ├── BaseSequenceOperation.cs │ ├── CachedConditionData.cs │ ├── Commands │ │ ├── ClearSequencesCommand.cs │ │ ├── ConnectToDedicatedConsoleCommand.cs │ │ ├── DeleteConditionSelectionCommand.cs │ │ ├── DeleteOperationSelectionCommand.cs │ │ ├── DeleteSequenceSelectionCommand.cs │ │ ├── DuplicateConditionsCommand.cs │ │ ├── DuplicateOperationsCommand.cs │ │ ├── DuplicateSequencesCommand.cs │ │ ├── EditConditionOutputModeCommand.cs │ │ ├── NewSequenceCommand.cs │ │ ├── OpenTaskSequencesFromFileCommand.cs │ │ ├── RenameSequenceCommand.cs │ │ ├── RunSequenceCommand.cs │ │ ├── SaveTaskSequencesToFileCommand.cs │ │ ├── ShowTaskSequencerCommand.cs │ │ ├── StopSelectedSequencesCommand.cs │ │ ├── StopSpecificSequenceCommand.cs │ │ ├── ToggleConditionEnabledCommand.cs │ │ ├── ToggleOperationConditionBehaviourCommand.cs │ │ └── ToggleOperationEnabledCommand.cs │ ├── ConditionOutputMode.cs │ ├── Conditions │ │ ├── CompareMemoryCondition.cs │ │ └── IConditionsHost.cs │ ├── Contexts │ │ ├── ConditionsContextRegistry.cs │ │ ├── OperationsContextRegistry.cs │ │ └── TaskSequenceContextRegistry.cs │ ├── DataProviders │ │ ├── ConstantDataProvider.cs │ │ ├── DataValueProvider.cs │ │ └── RandomNumberDataProvider.cs │ ├── IEditConditionOutputModeService.cs │ ├── ITaskSequencerService.cs │ ├── OperationConditionBehaviour.cs │ ├── OperationState.cs │ ├── Operations │ │ ├── DelayOperation.cs │ │ ├── IPlaceholderOperation.cs │ │ ├── JumpToLabelOperation.cs │ │ ├── LabelOperation.cs │ │ ├── SetMemoryOperation.cs │ │ └── StopSequenceOperation.cs │ ├── RandomTriggerHelper.cs │ ├── SequenceExecutionContext.cs │ ├── SetMemoryWriteMode.cs │ ├── TaskSequence.cs │ ├── TaskSequenceManager.cs │ ├── TypedAddress.cs │ ├── View │ │ ├── SequenceOperationViewState.cs │ │ ├── TaskSequenceManagerViewState.cs │ │ └── TaskSequenceViewState.cs │ └── XmlTaskSequenceSerialization.cs ├── SimpleIcons.cs ├── ValueAbstraction │ ├── DataValueByteArray.cs │ ├── DataValueNumeric.cs │ ├── DataValueString.cs │ └── IDataValue.cs ├── XboxBase │ ├── Modules │ │ ├── ConsoleModule.cs │ │ ├── ConsoleModuleSection.cs │ │ ├── IModuleManagerProcessor.cs │ │ └── ModuleViewer.cs │ ├── README.md │ ├── ShowModuleSectionInfoInDialogCommand.cs │ ├── XboxBreakpointType.cs │ └── XboxSectionInfoFlags.cs └── XboxInfo │ ├── MemoryRegionUserInputInfo.cs │ └── MemoryRegionViewModel.cs ├── MemoryEngine360_2025-06-30_00.22.07.png ├── Playstation ├── MemEngine360.PS3.CCAPISurrogate │ ├── ApiHelper.cs │ ├── MemEngine360.PS3.CCAPISurrogate.csproj │ ├── Program.cs │ ├── RpcClient.cs │ └── UnmanagedCCAPI.cs └── MemEngine360.PS3 │ ├── CC │ ├── ConsoleConnectionCCAPI.cs │ └── ConsoleControlAPI.cs │ ├── Commands │ ├── ListAllProcessesCommand.cs │ ├── SetProcessCommand.cs │ └── SetProcessToActiveGameCommand.cs │ ├── ConnectToCCAPIInfo.cs │ ├── ConnectionTypePS3CCAPI.cs │ ├── ConnectionTypePS3MAPI.cs │ ├── MemEngine360.PS3.csproj │ ├── OpenCCAPIConnectionView.axaml │ ├── OpenCCAPIConnectionView.axaml.cs │ ├── PluginPS3.cs │ └── ProcessSelector │ ├── Commands │ └── RefreshProcessesCommand.cs │ ├── ProcessListBox.cs │ ├── ProcessListBoxItem.cs │ ├── ProcessSelectorUserInputInfo.cs │ ├── ProcessSelectorView.axaml │ ├── ProcessSelectorView.axaml.cs │ └── Ps3Process.cs ├── README.md ├── Xbox ├── MemEngine360.Xbox360XBDM │ ├── BinaryHexEditorView.axaml │ ├── BinaryHexEditorView.axaml.cs │ ├── Commands │ │ ├── EjectDiskTrayCommand.cs │ │ ├── ListHelpCommand.cs │ │ ├── SendCmdCommand.cs │ │ ├── ShowConsoleInfoCommand.cs │ │ └── ShowXbeInfoCommand.cs │ ├── Consoles │ │ ├── ConnectionTypeXbox360Xbdm.cs │ │ └── Xbdm │ │ │ ├── InvalidResponseException.cs │ │ │ ├── Jrpc2FeaturesImpl.cs │ │ │ ├── XbdmConsoleConnection.XbdmFeaturesImpl.cs │ │ │ ├── XbdmConsoleConnection.cs │ │ │ ├── XbdmResponse.cs │ │ │ └── XbdmResponseType.cs │ ├── MemEngine360.Xbox360XBDM.csproj │ ├── ParamUtils.cs │ ├── PluginXbox360Xbdm.cs │ ├── TestDebuggerEventReceiver.cs │ ├── Views │ │ ├── ConnectToXboxInfo.cs │ │ ├── DiscoveredConsole.cs │ │ ├── DiscoveredConsoleListBox.cs │ │ ├── OpenXbdmConnectionView.axaml │ │ └── OpenXbdmConnectionView.axaml.cs │ └── XbdmEventUtils.cs └── MemEngine360.Xbox360XDevkit │ ├── Commands │ └── XboxRunningProcessCommand.cs │ ├── ConnectionTypeXbox360XDevkit.cs │ ├── MemEngine360.Xbox360XDevkit.csproj │ ├── PluginXbox360XDevkit.cs │ ├── Views │ ├── ConnectToXboxInfo.cs │ ├── OpenXDevkitConnectionView.axaml │ └── OpenXDevkitConnectionView.axaml.cs │ ├── XDevkitConsoleConnection.cs │ └── libs │ └── XDevkit.dll └── global.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/COPYING.GPLv3 -------------------------------------------------------------------------------- /MemEngine360.Avalonia/AboutView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/AboutView.axaml -------------------------------------------------------------------------------- /MemEngine360.Avalonia/AboutView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/AboutView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/App.axaml -------------------------------------------------------------------------------- /MemEngine360.Avalonia/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/App.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/Icons/icon-16.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/Icons/icon-16.bmp -------------------------------------------------------------------------------- /MemEngine360.Avalonia/Icons/icon-32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/Icons/icon-32.bmp -------------------------------------------------------------------------------- /MemEngine360.Avalonia/Icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/Icons/icon.ico -------------------------------------------------------------------------------- /MemEngine360.Avalonia/Keymap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/Keymap.xml -------------------------------------------------------------------------------- /MemEngine360.Avalonia/Keymap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/Keymap.xsd -------------------------------------------------------------------------------- /MemEngine360.Avalonia/MemEngine360.Avalonia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/MemEngine360.Avalonia.csproj -------------------------------------------------------------------------------- /MemEngine360.Avalonia/MemoryEngineApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/MemoryEngineApplication.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/MemoryEngineManagerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/MemoryEngineManagerImpl.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/Program.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/ShowActivityListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/ShowActivityListCommand.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/SplashScreenWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/SplashScreenWindow.axaml -------------------------------------------------------------------------------- /MemEngine360.Avalonia/SplashScreenWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/SplashScreenWindow.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/TaskSequenceSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/TaskSequenceSerializer.cs -------------------------------------------------------------------------------- /MemEngine360.Avalonia/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/app.manifest -------------------------------------------------------------------------------- /MemEngine360.Avalonia/publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.Avalonia/publish.bat -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Commands/BaseScanCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Commands/BaseScanCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Commands/EngineButtonCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Commands/EngineButtonCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Commands/EngineConnectionReliantButtonCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Commands/EngineConnectionReliantButtonCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Commands/NotBusyReliantButtonCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Commands/NotBusyReliantButtonCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Connections/OpenTestConnectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Connections/OpenTestConnectionView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Connections/OpenTestConnectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Connections/OpenTestConnectionView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/DebuggerCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/DebuggerCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/DebuggerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/DebuggerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/DebuggerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/DebuggerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/DebuggerViewServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/DebuggerViewServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/FunctionEntryListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/FunctionEntryListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/RegisterEntryListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/RegisterEntryListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/ThreadEntryListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/ThreadEntryListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Debugging/ThreadMemoryAutoRefresh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Debugging/ThreadMemoryAutoRefresh.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EngineView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EngineView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EngineView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EngineView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerViewEx.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerViewEx.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerViewEx.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/ConsoleEventViewerViewEx.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/IConsoleEventArgsInfoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/IConsoleEventArgsInfoControl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEvent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEvent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEvent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEvent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventAssert.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventAssert.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventAssert.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventAssert.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventDebugString.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventDebugString.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventDebugString.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventArgsInfoControlXbdmEventDebugString.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/EventViewing/XbdmEvents/ConsoleEventListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserTreeView.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserTreeViewItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserTreeViewStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileBrowsing/FileBrowserTreeViewStyles.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileBrowsing/FileTreeExplorerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileBrowsing/FileTreeExplorerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileBrowsing/FileTreeExplorerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileBrowsing/FileTreeExplorerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileConnections/BinaryFileConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileConnections/BinaryFileConnection.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileConnections/ConnectionTypeBinaryFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileConnections/ConnectionTypeBinaryFile.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileConnections/OpenBinaryFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileConnections/OpenBinaryFileInfo.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileConnections/OpenBinaryFileView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileConnections/OpenBinaryFileView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/FileConnections/OpenBinaryFileView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/FileConnections/OpenBinaryFileView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemEngine360.BaseFrontEnd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemEngine360.BaseFrontEnd.csproj -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemEngineConfigurationPageStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemEngineConfigurationPageStyles.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemRegions/MemoryRegionProtectionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemRegions/MemoryRegionProtectionConverter.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemRegions/USizeToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemRegions/USizeToTextConverter.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemRegions/XboxMemoryRegionViewerUIControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemRegions/XboxMemoryRegionViewerUIControl.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemRegions/XboxMemoryRegionViewerUIControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemRegions/XboxMemoryRegionViewerUIControl.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemoryEngineConfigurationPageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemoryEngineConfigurationPageControl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/MemoryEngineConfigurationPageControlV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/MemoryEngineConfigurationPageControlV2.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Commands/BaseModToolCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Commands/BaseModToolCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Commands/ConnectModToolToConsoleCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Commands/ConnectModToolToConsoleCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Commands/RestartModToolCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Commands/RestartModToolCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Controls/BaseControlBindingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Controls/BaseControlBindingHelper.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTButton.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTDockPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTDockPanel.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTGridPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTGridPanel.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTStackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTStackPanel.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTTextBlock.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/Controls/ControlMTTextBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/DesktopModToolViewServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/DesktopModToolViewServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/ModToolManagerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/ModToolManagerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/ModToolManagerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/ModToolManagerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/ModToolTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/ModToolTabControl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/ModToolTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/ModToolTabItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/ModToolView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/ModToolView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ModTools/ModToolView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ModTools/ModToolView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/PointerScanning/PointerScanResultListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/PointerScanning/PointerScanResultListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/PointerScanning/PointerScanResultToolTip.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/PointerScanning/PointerScanResultToolTip.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/PointerScanning/PointerScanResultToolTip.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/PointerScanning/PointerScanResultToolTip.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/PointerScanning/PointerScanServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/PointerScanning/PointerScanServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/PointerScanning/PointerScannerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/PointerScanning/PointerScannerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/PointerScanning/PointerScannerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/PointerScanning/PointerScannerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/SavedAddressing/AddressTableTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/SavedAddressing/AddressTableTreeView.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/SavedAddressing/AddressTableTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/SavedAddressing/AddressTableTreeViewItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/SavedAddressing/AddressTableTreeViewStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/SavedAddressing/AddressTableTreeViewStyles.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ScanResultCurrentValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ScanResultCurrentValueConverter.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/ScanningOrderListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/ScanningOrderListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/Commands/BaseScriptCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/Commands/BaseScriptCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/Commands/ConnectScriptToConsoleCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/Commands/ConnectScriptToConsoleCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/Commands/RunScriptCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/Commands/RunScriptCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/Commands/StopScriptCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/Commands/StopScriptCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/DesktopScriptingViewServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/DesktopScriptingViewServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/LuaScriptDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/LuaScriptDocument.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/LuaScriptDocumentServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/LuaScriptDocumentServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/LuaTextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/LuaTextEditor.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/ScriptTabControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/ScriptTabControl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/ScriptTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/ScriptTabItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/ScriptingView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/ScriptingView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Scripting/ScriptingView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Scripting/ScriptingView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleConnectionManagerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleConnectionManagerImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeListBoxItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeToolTip.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeToolTip.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeToolTip.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/ConsoleTypeToolTip.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/IConsoleConnectivityControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/IConsoleConnectivityControl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/OpenConnectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/OpenConnectionView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/Connectivity/OpenConnectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/Connectivity/OpenConnectionView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/AutoRefreshLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/AutoRefreshLayer.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/ChangedRegionLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/ChangedRegionLayer.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/DataInspectorControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/DataInspectorControl.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/DataInspectorControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/DataInspectorControl.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/HexEditorChangeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/HexEditorChangeManager.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/MemoryViewerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/MemoryViewerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/MemoryViewerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/MemoryViewerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/HexEditing/MemoryViewerViewServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/HexEditing/MemoryViewerViewServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/SavedResultDataTypeEditorUserInputControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/SavedResultDataTypeEditorUserInputControl.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Services/SavedResultDataTypeEditorUserInputControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Services/SavedResultDataTypeEditorUserInputControl.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/StructViewing/DesktopStructViewerServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/StructViewing/DesktopStructViewerServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/StructViewing/StructViewerTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/StructViewing/StructViewerTreeView.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/StructViewing/StructViewerTreeViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/StructViewing/StructViewerTreeViewItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/StructViewing/StructViewerTreeViewStyles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/StructViewing/StructViewerTreeViewStyles.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Commands/BaseSequenceCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Commands/BaseSequenceCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Commands/BaseSequenceManagerCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Commands/BaseSequenceManagerCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Commands/ConnectToDedicatedConsoleCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Commands/ConnectToDedicatedConsoleCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Commands/OpenConsoleConnectionInSequencerCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Commands/OpenConsoleConnectionInSequencerCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Commands/RunSequenceCommandUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Commands/RunSequenceCommandUsage.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/ConditionSourcePresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/ConditionSourcePresenter.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/BaseConditionListContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/BaseConditionListContent.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/CompareMemoryConditionListContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/CompareMemoryConditionListContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/CompareMemoryConditionListContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/CompareMemoryConditionListContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/ConditionsListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/ConditionsListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/ConditionsListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/ConditionsListBoxItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/EditConditionOutputModeServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/EditConditionOutputModeServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/EditConditionOutputModeView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/EditConditionOutputModeView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/EditConditionOutputModeView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Conditions/EditConditionOutputModeView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/DataHandlers/ConstantDataValueHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/DataHandlers/ConstantDataValueHandler.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/DataHandlers/DataProviderHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/DataHandlers/DataProviderHandler.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/DataHandlers/RandomNumericDataValueHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/DataHandlers/RandomNumericDataValueHandler.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/GridSplitterNonHitListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/GridSplitterNonHitListBoxItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/OperationListPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/OperationListPresenter.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/BaseOperationEditorContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/BaseOperationEditorContent.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/Containers/OperationEditorContentContainerListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/Containers/OperationEditorContentContainerListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/Containers/OperationEditorContentContainerListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/Containers/OperationEditorContentContainerListBoxItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/Containers/OperationEditorContentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/Containers/OperationEditorContentModel.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/DelayOperationEditorContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/DelayOperationEditorContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/DelayOperationEditorContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/DelayOperationEditorContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/RandomTriggerEditorContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/RandomTriggerEditorContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/RandomTriggerEditorContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/RandomTriggerEditorContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOpModeEditorContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOpModeEditorContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOpModeEditorContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOpModeEditorContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOperationEditorContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOperationEditorContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOperationEditorContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/EditorContent/SetMemoryOperationEditorContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/BaseOperationListContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/BaseOperationListContent.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/DelayOperationListContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/DelayOperationListContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/DelayOperationListContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/DelayOperationListContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/JumpToOperationListContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/JumpToOperationListContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/JumpToOperationListContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/JumpToOperationListContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/LabelOperationListContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/LabelOperationListContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/LabelOperationListContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/LabelOperationListContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/SetMemoryOperationListContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/SetMemoryOperationListContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/SetMemoryOperationListContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/SetMemoryOperationListContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/StopSequenceOperationListContent.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/StopSequenceOperationListContent.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/StopSequenceOperationListContent.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/ListContent/StopSequenceOperationListContent.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/OperationListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/OperationListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/Operations/OperationListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/Operations/OperationListBoxItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/SequenceListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/SequenceListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/SequenceListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/SequenceListBoxItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/TaskSequencerServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/TaskSequencerServiceImpl.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/TaskSequencerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/TaskSequencerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/TaskSequencing/TaskSequencerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/TaskSequencing/TaskSequencerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Themes/MemoryEngineBrushLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Themes/MemoryEngineBrushLoader.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Themes/MemoryEngineThemes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Themes/MemoryEngineThemes.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/Utils/BinderParsingUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/Utils/BinderParsingUtils.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/XboxBase/Modules/EmptyStringToTextConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/XboxBase/Modules/EmptyStringToTextConverter.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleListBox.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleListBoxItem.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleViewerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleViewerView.axaml -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleViewerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/XboxBase/Modules/ModuleViewerView.axaml.cs -------------------------------------------------------------------------------- /MemEngine360.BaseFrontEnd/XboxBase/ShowModulesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.BaseFrontEnd/XboxBase/ShowModulesCommand.cs -------------------------------------------------------------------------------- /MemEngine360.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360.sln -------------------------------------------------------------------------------- /MemEngine360/BaseTransferableDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/BaseTransferableDataViewModel.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/AddSavedAddressCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/AddSavedAddressCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/AddSelectedScanResultsToSavedAddressListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/AddSelectedScanResultsToSavedAddressListCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/BaseCopyAddressTableEntryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/BaseCopyAddressTableEntryCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/BaseSavedAddressSelectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/BaseSavedAddressSelectionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/ClearSavedAddressesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/ClearSavedAddressesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/CopyAbsoluteAddressToClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/CopyAbsoluteAddressToClipboardCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/CopyAddressToClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/CopyAddressToClipboardCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/CopySavedAddressValuesToClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/CopySavedAddressValuesToClipboardCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/DeleteSelectedSavedAddressesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/DeleteSelectedSavedAddressesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/DuplicateSelectedSavedAddressesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/DuplicateSelectedSavedAddressesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/EditSavedAddressAddressCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/EditSavedAddressAddressCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/EditSavedAddressDataTypeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/EditSavedAddressDataTypeCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/EditSavedAddressDescriptionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/EditSavedAddressDescriptionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/EditSavedAddressValueCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/EditSavedAddressValueCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/GroupEntriesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/GroupEntriesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/ToggleSavedAddressAutoRefreshCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/ToggleSavedAddressAutoRefreshCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/XML/OpenXMLFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/XML/OpenXMLFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/XML/SaveSavedAddressesToFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/XML/SaveSavedAddressesToFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ATM/XML/XmlBaseAddressEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ATM/XML/XmlBaseAddressEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/BaseMemoryEngineCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/BaseMemoryEngineCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/BaseRemoteConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/BaseRemoteConsoleCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/CancelScanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/CancelScanCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/CopyScanResultsToClipboardCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/CopyScanResultsToClipboardCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/DeleteSelectedScanResultsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/DeleteSelectedScanResultsCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/DumpMemoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/DumpMemoryCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/EditScanResultValueCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/EditScanResultValueCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/FirstScanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/FirstScanCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/NextScanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/NextScanCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/OpenConsoleConnectionDialogCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/OpenConsoleConnectionDialogCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/OpenConsoleConnectionInSequencerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/OpenConsoleConnectionInSequencerCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/RefreshSavedAddressesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/RefreshSavedAddressesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ResetScanCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ResetScanCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ResetScanOptionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ResetScanOptionsCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/SelectRangeFromMemoryRegionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/SelectRangeFromMemoryRegionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ShowConsoleEventViewerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ShowConsoleEventViewerCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ShowMemoryRegionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ShowMemoryRegionsCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ShowMemoryViewCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ShowMemoryViewCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/ShowPointerScannerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/ShowPointerScannerCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Commands/StandardEngineMessages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Commands/StandardEngineMessages.cs -------------------------------------------------------------------------------- /MemEngine360/Configs/BasicApplicationConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Configs/BasicApplicationConfiguration.cs -------------------------------------------------------------------------------- /MemEngine360/Configs/MemoryEngineConfigurationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Configs/MemoryEngineConfigurationPage.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/AddressRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/AddressRange.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/BaseConsoleConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/BaseConsoleConnection.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/ConsoleConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/ConsoleConnectionManager.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IConsoleFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IConsoleFeature.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureDiskEjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureDiskEjection.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureFileSystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureFileSystemInfo.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureIceCubes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureIceCubes.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureMemoryRegions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureMemoryRegions.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeaturePowerFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeaturePowerFunctions.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureSystemEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureSystemEvents.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureXbox360Xbdm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureXbox360Xbdm.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureXboxDebugging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureXboxDebugging.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureXboxExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureXboxExecutionState.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureXboxJRPC2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureXboxJRPC2.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureXboxNotifications.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureXboxNotifications.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Features/IFeatureXboxThreads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Features/IFeatureXboxThreads.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/IConnectionLockPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/IConnectionLockPair.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/IConsoleConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/IConsoleConnection.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/INetworkConsoleConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/INetworkConsoleConnection.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/IOpenConnectionView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/IOpenConnectionView.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/MemoryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/MemoryRegion.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/OpenConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/OpenConnectionInfo.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/RegisteredConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/RegisteredConnectionType.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Testing/ConnectionTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Testing/ConnectionTypeTest.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Testing/TestConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Testing/TestConnectionInfo.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/Testing/TestConsoleConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/Testing/TestConsoleConnection.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/UserConnectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/UserConnectionInfo.cs -------------------------------------------------------------------------------- /MemEngine360/Connections/XboxThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Connections/XboxThread.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/AddressParsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/AddressParsing.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Addressing/DynamicAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Addressing/DynamicAddress.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Addressing/IMemoryAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Addressing/IMemoryAddress.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Addressing/PatternAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Addressing/PatternAddress.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Addressing/StaticAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Addressing/StaticAddress.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/BusyLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/BusyLock.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/ConnectionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/ConnectionAction.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/ConnectionChangeCause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/ConnectionChangeCause.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/DataValueUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/DataValueUtils.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/BaseDebuggerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/BaseDebuggerCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/DebugStepCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/DebugStepCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/FreezeConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/FreezeConsoleCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/GoToDebugMemoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/GoToDebugMemoryCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/OpenDebuggerConnectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/OpenDebuggerConnectionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/RefreshAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/RefreshAllCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/RefreshRegistersCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/RefreshRegistersCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/ResumeThreadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/ResumeThreadCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/ShowDebuggerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/ShowDebuggerCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/SuspendThreadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/SuspendThreadCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Commands/UnfreezeConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Commands/UnfreezeConsoleCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/ConsoleDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/ConsoleDebugger.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/FunctionCallEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/FunctionCallEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/IDebuggerViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/IDebuggerViewService.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/IDebuggerWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/IDebuggerWindow.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/RegisterEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/RegisterEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/ThreadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/ThreadContext.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/ThreadEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/ThreadEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Debugging/Unwinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Debugging/Unwinder.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/ConsoleSystemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/ConsoleSystemEventArgs.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgs.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsAssert.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsBreakpoint.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsCreateThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsCreateThread.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsDebugString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsDebugString.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsException.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsExecutionState.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsExternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsExternal.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsFiber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsFiber.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsModuleLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsModuleLoad.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsNotification.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsRip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsRip.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsSection.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsTerminateThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsTerminateThread.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsThreadLife.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Events/XbdmEvents/XbdmEventArgsThreadLife.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/BaseFileTreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/BaseFileTreeNode.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/BaseFileExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/BaseFileExplorerCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/CreateAbsoluteDirectoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/CreateAbsoluteDirectoryCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/CreateDirectoryInDirectoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/CreateDirectoryInDirectoryCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/DeleteFilesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/DeleteFilesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/LaunchFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/LaunchFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/MoveFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/MoveFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/RenameFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/RenameFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/Commands/ShowFileBrowserCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/Commands/ShowFileBrowserCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/FileTreeExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/FileTreeExplorer.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/FileTreeExplorerViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/FileTreeExplorerViewState.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/FileTreeNodeDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/FileTreeNodeDirectory.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/FileTreeNodeFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/FileTreeNodeFile.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/FileBrowsing/IFileBrowserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/FileBrowsing/IFileBrowserService.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Commands/BaseHexEditorCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Commands/BaseHexEditorCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Commands/ClearAutoScanRangeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Commands/ClearAutoScanRangeCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Commands/GotoAddressCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Commands/GotoAddressCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Commands/ReloadSelectionFromConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Commands/ReloadSelectionFromConsole.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Commands/SaveSelectionAsFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Commands/SaveSelectionAsFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Commands/SetAutoScanRangeAsSelectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Commands/SetAutoScanRangeAsSelectionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Commands/UploadSelectionToConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Commands/UploadSelectionToConsoleCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/ConsoleHexBinarySource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/ConsoleHexBinarySource.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/Endianness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/Endianness.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/IHexEditorUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/IHexEditorUI.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/IMemoryViewerViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/IMemoryViewerViewService.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/HexEditing/MemoryViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/HexEditing/MemoryViewer.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/IBusyToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/IBusyToken.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/IConsoleEventViewerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/IConsoleEventViewerService.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/MemoryEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/MemoryEngine.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/MemoryEngineManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/MemoryEngineManager.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Modes/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Modes/DataType.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Modes/FloatScanOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Modes/FloatScanOption.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Modes/NumericScanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Modes/NumericScanType.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Modes/StringType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Modes/StringType.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/SavedAddressing/AddressTableEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/SavedAddressing/AddressTableEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/SavedAddressing/AddressTableGroupEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/SavedAddressing/AddressTableGroupEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/SavedAddressing/AddressTableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/SavedAddressing/AddressTableManager.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/SavedAddressing/BaseAddressTableEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/SavedAddressing/BaseAddressTableEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/ScanResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/ScanResultViewModel.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Scanners/AnyTypeScanningContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Scanners/AnyTypeScanningContext.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Scanners/DataTypedScanningContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Scanners/DataTypedScanningContext.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Scanners/FirstTypedScanTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Scanners/FirstTypedScanTask.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Scanners/ScanningContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Scanners/ScanningContext.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/Scanners/ValueScannerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/Scanners/ValueScannerUtils.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/ScanningOrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/ScanningOrderModel.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/ScanningProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/ScanningProcessor.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/ClassBuilding/ClassType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/ClassBuilding/ClassType.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/ClassBuilding/FieldElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/ClassBuilding/FieldElement.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/ClassBuilding/TypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/ClassBuilding/TypeDescriptor.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/Entries/BaseStructViewerEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/Entries/BaseStructViewerEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/Entries/StructViewerClassEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/Entries/StructViewerClassEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/Entries/StructViewerFieldEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/Entries/StructViewerFieldEntry.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/IStructViewerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/IStructViewerService.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/ShowStructViewerWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/ShowStructViewerWindowCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/StructViewing/StructViewerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/StructViewing/StructViewerManager.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/ToolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/ToolManager.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/View/MemoryEngineViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/View/MemoryEngineViewState.cs -------------------------------------------------------------------------------- /MemEngine360/Engine/View/ScanResultPanelViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Engine/View/ScanResultPanelViewState.cs -------------------------------------------------------------------------------- /MemEngine360/MemEngine360.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/MemEngine360.csproj -------------------------------------------------------------------------------- /MemEngine360/MemoryPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/MemoryPattern.cs -------------------------------------------------------------------------------- /MemEngine360/MessageBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/MessageBoxes.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/CloseModToolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/CloseModToolCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/ConnectModToolToConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/ConnectModToolToConsoleCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/CopyModToolFilePathCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/CopyModToolFilePathCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/CreateModToolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/CreateModToolCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/OpenModToolScriptFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/OpenModToolScriptFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/RenameModToolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/RenameModToolCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/RestartModToolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/RestartModToolCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/SaveAllModToolsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/SaveAllModToolsCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/SaveModToolCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/SaveModToolCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Commands/ShowModToolsWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Commands/ShowModToolsWindowCommand.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/BaseMTElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/BaseMTElement.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/BaseMTPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/BaseMTPanel.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/MTButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/MTButton.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/MTDockPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/MTDockPanel.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/MTGridPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/MTGridPanel.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/MTStackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/MTStackPanel.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/MTTextBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/MTTextBlock.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/MTTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/MTTextBox.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/Gui/ModToolGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/Gui/ModToolGUI.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/IModToolViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/IModToolViewService.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/LuaFeatures/LuaGuiFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/LuaFeatures/LuaGuiFunctions.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/LuaModToolMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/LuaModToolMachine.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/ModTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/ModTool.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/ModToolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/ModToolManager.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/ModToolManagerViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/ModToolManagerViewState.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/ModToolTabContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/ModToolTabContextRegistry.cs -------------------------------------------------------------------------------- /MemEngine360/ModTools/ModToolViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ModTools/ModToolViewState.cs -------------------------------------------------------------------------------- /MemEngine360/PointerScanning/IPointerScanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/PointerScanning/IPointerScanService.cs -------------------------------------------------------------------------------- /MemEngine360/PointerScanning/PointerScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/PointerScanning/PointerScanner.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/AddNewScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/AddNewScriptCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/CloseScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/CloseScriptCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/ConnectScriptToConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/ConnectScriptToConsoleCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/CopyScriptFilePathCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/CopyScriptFilePathCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/OpenScriptFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/OpenScriptFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/RenameScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/RenameScriptCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/RunScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/RunScriptCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/SaveAllScriptsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/SaveAllScriptsCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/SaveScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/SaveScriptCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/ShowScriptingWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/ShowScriptingWindowCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Commands/StopScriptCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Commands/StopScriptCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/CompilationFailureEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/CompilationFailureEventArgs.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/ILuaMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/ILuaMachine.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/ILuaScriptDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/ILuaScriptDocument.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/ILuaScriptDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/ILuaScriptDocumentService.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/IScriptingViewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/IScriptingViewService.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/LuaFeatures/LuaEngineFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/LuaFeatures/LuaEngineFunctions.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/LuaFeatures/LuaUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/LuaFeatures/LuaUtils.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/LuaScriptMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/LuaScriptMachine.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/Script.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/ScriptTabContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/ScriptTabContextRegistry.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/ScriptViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/ScriptViewState.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/ScriptingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/ScriptingManager.cs -------------------------------------------------------------------------------- /MemEngine360/Scripting/ScriptingManagerViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Scripting/ScriptingManagerViewState.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/BaseSequenceCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/BaseSequenceCondition.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/BaseSequenceOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/BaseSequenceOperation.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/CachedConditionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/CachedConditionData.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/ClearSequencesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/ClearSequencesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/ConnectToDedicatedConsoleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/ConnectToDedicatedConsoleCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/DeleteConditionSelectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/DeleteConditionSelectionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/DeleteOperationSelectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/DeleteOperationSelectionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/DeleteSequenceSelectionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/DeleteSequenceSelectionCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/DuplicateConditionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/DuplicateConditionsCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/DuplicateOperationsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/DuplicateOperationsCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/DuplicateSequencesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/DuplicateSequencesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/EditConditionOutputModeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/EditConditionOutputModeCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/NewSequenceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/NewSequenceCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/OpenTaskSequencesFromFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/OpenTaskSequencesFromFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/RenameSequenceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/RenameSequenceCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/RunSequenceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/RunSequenceCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/SaveTaskSequencesToFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/SaveTaskSequencesToFileCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/ShowTaskSequencerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/ShowTaskSequencerCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/StopSelectedSequencesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/StopSelectedSequencesCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/StopSpecificSequenceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/StopSpecificSequenceCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/ToggleConditionEnabledCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/ToggleConditionEnabledCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/ToggleOperationConditionBehaviourCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/ToggleOperationConditionBehaviourCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Commands/ToggleOperationEnabledCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Commands/ToggleOperationEnabledCommand.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/ConditionOutputMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/ConditionOutputMode.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Conditions/CompareMemoryCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Conditions/CompareMemoryCondition.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Conditions/IConditionsHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Conditions/IConditionsHost.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Contexts/ConditionsContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Contexts/ConditionsContextRegistry.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Contexts/OperationsContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Contexts/OperationsContextRegistry.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Contexts/TaskSequenceContextRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Contexts/TaskSequenceContextRegistry.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/DataProviders/ConstantDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/DataProviders/ConstantDataProvider.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/DataProviders/DataValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/DataProviders/DataValueProvider.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/DataProviders/RandomNumberDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/DataProviders/RandomNumberDataProvider.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/IEditConditionOutputModeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/IEditConditionOutputModeService.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/ITaskSequencerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/ITaskSequencerService.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/OperationConditionBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/OperationConditionBehaviour.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/OperationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/OperationState.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Operations/DelayOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Operations/DelayOperation.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Operations/IPlaceholderOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Operations/IPlaceholderOperation.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Operations/JumpToLabelOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Operations/JumpToLabelOperation.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Operations/LabelOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Operations/LabelOperation.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Operations/SetMemoryOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Operations/SetMemoryOperation.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/Operations/StopSequenceOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/Operations/StopSequenceOperation.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/RandomTriggerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/RandomTriggerHelper.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/SequenceExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/SequenceExecutionContext.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/SetMemoryWriteMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/SetMemoryWriteMode.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/TaskSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/TaskSequence.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/TaskSequenceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/TaskSequenceManager.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/TypedAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/TypedAddress.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/View/SequenceOperationViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/View/SequenceOperationViewState.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/View/TaskSequenceManagerViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/View/TaskSequenceManagerViewState.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/View/TaskSequenceViewState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/View/TaskSequenceViewState.cs -------------------------------------------------------------------------------- /MemEngine360/Sequencing/XmlTaskSequenceSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/Sequencing/XmlTaskSequenceSerialization.cs -------------------------------------------------------------------------------- /MemEngine360/SimpleIcons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/SimpleIcons.cs -------------------------------------------------------------------------------- /MemEngine360/ValueAbstraction/DataValueByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ValueAbstraction/DataValueByteArray.cs -------------------------------------------------------------------------------- /MemEngine360/ValueAbstraction/DataValueNumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ValueAbstraction/DataValueNumeric.cs -------------------------------------------------------------------------------- /MemEngine360/ValueAbstraction/DataValueString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ValueAbstraction/DataValueString.cs -------------------------------------------------------------------------------- /MemEngine360/ValueAbstraction/IDataValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/ValueAbstraction/IDataValue.cs -------------------------------------------------------------------------------- /MemEngine360/XboxBase/Modules/ConsoleModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/Modules/ConsoleModule.cs -------------------------------------------------------------------------------- /MemEngine360/XboxBase/Modules/ConsoleModuleSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/Modules/ConsoleModuleSection.cs -------------------------------------------------------------------------------- /MemEngine360/XboxBase/Modules/IModuleManagerProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/Modules/IModuleManagerProcessor.cs -------------------------------------------------------------------------------- /MemEngine360/XboxBase/Modules/ModuleViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/Modules/ModuleViewer.cs -------------------------------------------------------------------------------- /MemEngine360/XboxBase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/README.md -------------------------------------------------------------------------------- /MemEngine360/XboxBase/ShowModuleSectionInfoInDialogCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/ShowModuleSectionInfoInDialogCommand.cs -------------------------------------------------------------------------------- /MemEngine360/XboxBase/XboxBreakpointType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/XboxBreakpointType.cs -------------------------------------------------------------------------------- /MemEngine360/XboxBase/XboxSectionInfoFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxBase/XboxSectionInfoFlags.cs -------------------------------------------------------------------------------- /MemEngine360/XboxInfo/MemoryRegionUserInputInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxInfo/MemoryRegionUserInputInfo.cs -------------------------------------------------------------------------------- /MemEngine360/XboxInfo/MemoryRegionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemEngine360/XboxInfo/MemoryRegionViewModel.cs -------------------------------------------------------------------------------- /MemoryEngine360_2025-06-30_00.22.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/MemoryEngine360_2025-06-30_00.22.07.png -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3.CCAPISurrogate/ApiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3.CCAPISurrogate/ApiHelper.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3.CCAPISurrogate/MemEngine360.PS3.CCAPISurrogate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3.CCAPISurrogate/MemEngine360.PS3.CCAPISurrogate.csproj -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3.CCAPISurrogate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3.CCAPISurrogate/Program.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3.CCAPISurrogate/RpcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3.CCAPISurrogate/RpcClient.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3.CCAPISurrogate/UnmanagedCCAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3.CCAPISurrogate/UnmanagedCCAPI.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/CC/ConsoleConnectionCCAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/CC/ConsoleConnectionCCAPI.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/CC/ConsoleControlAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/CC/ConsoleControlAPI.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/Commands/ListAllProcessesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/Commands/ListAllProcessesCommand.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/Commands/SetProcessCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/Commands/SetProcessCommand.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/Commands/SetProcessToActiveGameCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/Commands/SetProcessToActiveGameCommand.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ConnectToCCAPIInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ConnectToCCAPIInfo.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ConnectionTypePS3CCAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ConnectionTypePS3CCAPI.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ConnectionTypePS3MAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ConnectionTypePS3MAPI.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/MemEngine360.PS3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/MemEngine360.PS3.csproj -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/OpenCCAPIConnectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/OpenCCAPIConnectionView.axaml -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/OpenCCAPIConnectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/OpenCCAPIConnectionView.axaml.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/PluginPS3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/PluginPS3.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ProcessSelector/Commands/RefreshProcessesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ProcessSelector/Commands/RefreshProcessesCommand.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ProcessSelector/ProcessListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ProcessSelector/ProcessListBox.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ProcessSelector/ProcessListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ProcessSelector/ProcessListBoxItem.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ProcessSelector/ProcessSelectorUserInputInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ProcessSelector/ProcessSelectorUserInputInfo.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ProcessSelector/ProcessSelectorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ProcessSelector/ProcessSelectorView.axaml -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ProcessSelector/ProcessSelectorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ProcessSelector/ProcessSelectorView.axaml.cs -------------------------------------------------------------------------------- /Playstation/MemEngine360.PS3/ProcessSelector/Ps3Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Playstation/MemEngine360.PS3/ProcessSelector/Ps3Process.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/README.md -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/BinaryHexEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/BinaryHexEditorView.axaml -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/BinaryHexEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/BinaryHexEditorView.axaml.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Commands/EjectDiskTrayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Commands/EjectDiskTrayCommand.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Commands/ListHelpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Commands/ListHelpCommand.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Commands/SendCmdCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Commands/SendCmdCommand.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Commands/ShowConsoleInfoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Commands/ShowConsoleInfoCommand.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Commands/ShowXbeInfoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Commands/ShowXbeInfoCommand.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Consoles/ConnectionTypeXbox360Xbdm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Consoles/ConnectionTypeXbox360Xbdm.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/InvalidResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/InvalidResponseException.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/Jrpc2FeaturesImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/Jrpc2FeaturesImpl.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmConsoleConnection.XbdmFeaturesImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmConsoleConnection.XbdmFeaturesImpl.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmConsoleConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmConsoleConnection.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmResponse.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmResponseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Consoles/Xbdm/XbdmResponseType.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/MemEngine360.Xbox360XBDM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/MemEngine360.Xbox360XBDM.csproj -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/ParamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/ParamUtils.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/PluginXbox360Xbdm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/PluginXbox360Xbdm.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/TestDebuggerEventReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/TestDebuggerEventReceiver.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Views/ConnectToXboxInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Views/ConnectToXboxInfo.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Views/DiscoveredConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Views/DiscoveredConsole.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Views/DiscoveredConsoleListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Views/DiscoveredConsoleListBox.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Views/OpenXbdmConnectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Views/OpenXbdmConnectionView.axaml -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/Views/OpenXbdmConnectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/Views/OpenXbdmConnectionView.axaml.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XBDM/XbdmEventUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XBDM/XbdmEventUtils.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/Commands/XboxRunningProcessCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/Commands/XboxRunningProcessCommand.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/ConnectionTypeXbox360XDevkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/ConnectionTypeXbox360XDevkit.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/MemEngine360.Xbox360XDevkit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/MemEngine360.Xbox360XDevkit.csproj -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/PluginXbox360XDevkit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/PluginXbox360XDevkit.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/Views/ConnectToXboxInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/Views/ConnectToXboxInfo.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/Views/OpenXDevkitConnectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/Views/OpenXDevkitConnectionView.axaml -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/Views/OpenXDevkitConnectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/Views/OpenXDevkitConnectionView.axaml.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/XDevkitConsoleConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/XDevkitConsoleConnection.cs -------------------------------------------------------------------------------- /Xbox/MemEngine360.Xbox360XDevkit/libs/XDevkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/Xbox/MemEngine360.Xbox360XDevkit/libs/XDevkit.dll -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AngryCarrot789/MemoryEngine360/HEAD/global.json --------------------------------------------------------------------------------