├── .editorconfig ├── .gitignore ├── Expedition Damage Calculation.pdf ├── LICENSE.txt ├── Monsters Data Distribution Explanation.pdf ├── README.md ├── SmartHunter Share Data(Beta).zip ├── SmartHunter.sln └── SmartHunter ├── App.config ├── App.xaml ├── App.xaml.cs ├── Core ├── AddressRange.cs ├── BytePattern.cs ├── Command.cs ├── Config │ ├── ConfigContainer.cs │ ├── ContractResolver.cs │ ├── PreserveCollectionIntegrity.cs │ ├── StringFloatConverter.cs │ └── WidgetConfig.cs ├── Data │ ├── Bindable.cs │ ├── ContextualWidget.cs │ ├── Progress.cs │ ├── TimedVisibility.cs │ ├── Widget.cs │ └── WidgetContext.cs ├── FileContainer.cs ├── GenericEventArgs.cs ├── Helpers │ ├── MemoryHelper.cs │ ├── ServerManager.cs │ ├── Updater.cs │ └── WindowHelper.cs ├── KeyboardInput.cs ├── KeyboardInputEventArgs.cs ├── Log.cs ├── MemoryUpdater.cs ├── Overlay.cs ├── PointerTrace.cs ├── PointerTraceLevel.cs ├── Setting.cs ├── StateMachine.cs ├── ThreadedMemoryScan.cs ├── Windows │ └── WidgetWindow.cs └── WindowsApi.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Game ├── Config │ ├── BytePatternConfig.cs │ ├── DebugConfig.cs │ ├── DebugWidgetConfig.cs │ ├── LocalizationConfig.cs │ ├── MainConfig.cs │ ├── MemoryConditionConfig.cs │ ├── MemoryConfig.cs │ ├── MonsterConfig.cs │ ├── MonsterCrownConfig.cs │ ├── MonsterDataConfig.cs │ ├── MonsterPartConfig.cs │ ├── MonsterSoftenPartsConfig.cs │ ├── MonsterStatusEffectConfig.cs │ ├── MonsterWidgetConfig.cs │ ├── OverlayConfig.cs │ ├── PlayerDataConfig.cs │ ├── PlayerWidgetConfig.cs │ ├── StatusEffectConfig.cs │ ├── TeamWidgetConfig.cs │ └── VersionsConfig.cs ├── Data │ ├── DamagePoint.cs │ ├── Game.cs │ ├── Monster.cs │ ├── MonsterPart.cs │ ├── MonsterPartSoften.cs │ ├── MonsterStatusEffect.cs │ ├── Player.cs │ ├── PlayerStatusEffect.cs │ ├── ViewModels │ │ ├── ConsoleViewModel.cs │ │ ├── OverlayViewModel.cs │ │ └── SettingsViewModel.cs │ └── WidgetContexts │ │ ├── DebugWidgetContext.cs │ │ ├── MonsterWidgetContext.cs │ │ ├── PlayerWidgetContext.cs │ │ └── TeamWidgetContext.cs ├── Helpers │ ├── ConfigHelper.cs │ ├── LocalizationHelper.cs │ └── MhwHelper.cs ├── InputControl.cs ├── MhwMemoryUpdater.cs └── MhwOverlay.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── SmartHunter.csproj ├── Ui ├── Behaviors │ └── UpdateOxyPlotBehavior.cs ├── Controls │ └── ScrollingTextBox.cs ├── Converters │ ├── AngleToIsLargeArcConverter.cs │ ├── AngleToPointConverter.cs │ ├── BoolToVisibilityConverter.cs │ ├── ColorTransformConverter.cs │ ├── EnumComparisonConverter.cs │ ├── FractionToPercentageConverter.cs │ ├── LocalizerConverter.cs │ ├── NumberComparisonConverter.cs │ ├── NumberToCenteredMarginConverter.cs │ ├── PlayerToPlayerIndexConverter.cs │ ├── StringArrayContainsConverter.cs │ ├── StringFormatConverter.cs │ └── WeaponTypeToNameConverter.cs ├── Fonts │ ├── Roboto-Bold.ttf │ └── Roboto-Medium.ttf ├── Resources │ └── Default.xaml └── Windows │ ├── ConsoleWindow.xaml │ ├── ConsoleWindow.xaml.cs │ ├── DebugWidgetWindow.xaml │ ├── DebugWidgetWindow.xaml.cs │ ├── MonsterWidgetWindow.xaml │ ├── MonsterWidgetWindow.xaml.cs │ ├── PlayerWidgetWindow.xaml │ ├── PlayerWidgetWindow.xaml.cs │ ├── TeamWidgetWindow.xaml │ └── TeamWidgetWindow.xaml.cs └── bin └── Debug ├── Default.xaml ├── Newtonsoft.Json.dll └── SmartHunter.exe /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/.gitignore -------------------------------------------------------------------------------- /Expedition Damage Calculation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/Expedition Damage Calculation.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Monsters Data Distribution Explanation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/Monsters Data Distribution Explanation.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/README.md -------------------------------------------------------------------------------- /SmartHunter Share Data(Beta).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter Share Data(Beta).zip -------------------------------------------------------------------------------- /SmartHunter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter.sln -------------------------------------------------------------------------------- /SmartHunter/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/App.config -------------------------------------------------------------------------------- /SmartHunter/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/App.xaml -------------------------------------------------------------------------------- /SmartHunter/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/App.xaml.cs -------------------------------------------------------------------------------- /SmartHunter/Core/AddressRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/AddressRange.cs -------------------------------------------------------------------------------- /SmartHunter/Core/BytePattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/BytePattern.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Command.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Config/ConfigContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Config/ConfigContainer.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Config/ContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Config/ContractResolver.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Config/PreserveCollectionIntegrity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Config/PreserveCollectionIntegrity.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Config/StringFloatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Config/StringFloatConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Config/WidgetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Config/WidgetConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Data/Bindable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Data/Bindable.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Data/ContextualWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Data/ContextualWidget.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Data/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Data/Progress.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Data/TimedVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Data/TimedVisibility.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Data/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Data/Widget.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Data/WidgetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Data/WidgetContext.cs -------------------------------------------------------------------------------- /SmartHunter/Core/FileContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/FileContainer.cs -------------------------------------------------------------------------------- /SmartHunter/Core/GenericEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/GenericEventArgs.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Helpers/MemoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Helpers/MemoryHelper.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Helpers/ServerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Helpers/ServerManager.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Helpers/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Helpers/Updater.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Helpers/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Helpers/WindowHelper.cs -------------------------------------------------------------------------------- /SmartHunter/Core/KeyboardInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/KeyboardInput.cs -------------------------------------------------------------------------------- /SmartHunter/Core/KeyboardInputEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/KeyboardInputEventArgs.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Log.cs -------------------------------------------------------------------------------- /SmartHunter/Core/MemoryUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/MemoryUpdater.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Overlay.cs -------------------------------------------------------------------------------- /SmartHunter/Core/PointerTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/PointerTrace.cs -------------------------------------------------------------------------------- /SmartHunter/Core/PointerTraceLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/PointerTraceLevel.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Setting.cs -------------------------------------------------------------------------------- /SmartHunter/Core/StateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/StateMachine.cs -------------------------------------------------------------------------------- /SmartHunter/Core/ThreadedMemoryScan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/ThreadedMemoryScan.cs -------------------------------------------------------------------------------- /SmartHunter/Core/Windows/WidgetWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/Windows/WidgetWindow.cs -------------------------------------------------------------------------------- /SmartHunter/Core/WindowsApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Core/WindowsApi.cs -------------------------------------------------------------------------------- /SmartHunter/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/FodyWeavers.xml -------------------------------------------------------------------------------- /SmartHunter/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/FodyWeavers.xsd -------------------------------------------------------------------------------- /SmartHunter/Game/Config/BytePatternConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/BytePatternConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/DebugConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/DebugConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/DebugWidgetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/DebugWidgetConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/LocalizationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/LocalizationConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MainConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MainConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MemoryConditionConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MemoryConditionConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MemoryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MemoryConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MonsterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MonsterConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MonsterCrownConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MonsterCrownConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MonsterDataConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MonsterDataConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MonsterPartConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MonsterPartConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MonsterSoftenPartsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MonsterSoftenPartsConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MonsterStatusEffectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MonsterStatusEffectConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/MonsterWidgetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/MonsterWidgetConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/OverlayConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/OverlayConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/PlayerDataConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/PlayerDataConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/PlayerWidgetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/PlayerWidgetConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/StatusEffectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/StatusEffectConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/TeamWidgetConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/TeamWidgetConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Config/VersionsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Config/VersionsConfig.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/DamagePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/DamagePoint.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/Game.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/Monster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/Monster.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/MonsterPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/MonsterPart.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/MonsterPartSoften.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/MonsterPartSoften.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/MonsterStatusEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/MonsterStatusEffect.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/Player.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/PlayerStatusEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/PlayerStatusEffect.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/ViewModels/ConsoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/ViewModels/ConsoleViewModel.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/ViewModels/OverlayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/ViewModels/OverlayViewModel.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/WidgetContexts/DebugWidgetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/WidgetContexts/DebugWidgetContext.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/WidgetContexts/MonsterWidgetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/WidgetContexts/MonsterWidgetContext.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/WidgetContexts/PlayerWidgetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/WidgetContexts/PlayerWidgetContext.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Data/WidgetContexts/TeamWidgetContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Data/WidgetContexts/TeamWidgetContext.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Helpers/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Helpers/ConfigHelper.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Helpers/LocalizationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Helpers/LocalizationHelper.cs -------------------------------------------------------------------------------- /SmartHunter/Game/Helpers/MhwHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/Helpers/MhwHelper.cs -------------------------------------------------------------------------------- /SmartHunter/Game/InputControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/InputControl.cs -------------------------------------------------------------------------------- /SmartHunter/Game/MhwMemoryUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/MhwMemoryUpdater.cs -------------------------------------------------------------------------------- /SmartHunter/Game/MhwOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Game/MhwOverlay.cs -------------------------------------------------------------------------------- /SmartHunter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SmartHunter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SmartHunter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Properties/Resources.resx -------------------------------------------------------------------------------- /SmartHunter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SmartHunter/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Properties/Settings.settings -------------------------------------------------------------------------------- /SmartHunter/SmartHunter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/SmartHunter.csproj -------------------------------------------------------------------------------- /SmartHunter/Ui/Behaviors/UpdateOxyPlotBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Behaviors/UpdateOxyPlotBehavior.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Controls/ScrollingTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Controls/ScrollingTextBox.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/AngleToIsLargeArcConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/AngleToIsLargeArcConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/AngleToPointConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/AngleToPointConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/ColorTransformConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/ColorTransformConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/EnumComparisonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/EnumComparisonConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/FractionToPercentageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/FractionToPercentageConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/LocalizerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/LocalizerConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/NumberComparisonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/NumberComparisonConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/NumberToCenteredMarginConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/NumberToCenteredMarginConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/PlayerToPlayerIndexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/PlayerToPlayerIndexConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/StringArrayContainsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/StringArrayContainsConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/StringFormatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/StringFormatConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Converters/WeaponTypeToNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Converters/WeaponTypeToNameConverter.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /SmartHunter/Ui/Fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /SmartHunter/Ui/Resources/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Resources/Default.xaml -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/ConsoleWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/ConsoleWindow.xaml -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/ConsoleWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/ConsoleWindow.xaml.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/DebugWidgetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/DebugWidgetWindow.xaml -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/DebugWidgetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/DebugWidgetWindow.xaml.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/MonsterWidgetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/MonsterWidgetWindow.xaml -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/MonsterWidgetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/MonsterWidgetWindow.xaml.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/PlayerWidgetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/PlayerWidgetWindow.xaml -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/PlayerWidgetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/PlayerWidgetWindow.xaml.cs -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/TeamWidgetWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/TeamWidgetWindow.xaml -------------------------------------------------------------------------------- /SmartHunter/Ui/Windows/TeamWidgetWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/Ui/Windows/TeamWidgetWindow.xaml.cs -------------------------------------------------------------------------------- /SmartHunter/bin/Debug/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/bin/Debug/Default.xaml -------------------------------------------------------------------------------- /SmartHunter/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SmartHunter/bin/Debug/SmartHunter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragonyue0417/SmartHunter/HEAD/SmartHunter/bin/Debug/SmartHunter.exe --------------------------------------------------------------------------------