├── .gitignore ├── FakeLegionZone.sln ├── FakeLegionZone ├── 1.0.0 │ └── ui │ │ └── images │ │ ├── inforbar_bg.png │ │ ├── inforbar_bg_big.png │ │ ├── inforbar_bg_small.png │ │ ├── inforbar_bg_ver.png │ │ ├── inforbar_bg_ver_big.png │ │ └── inforbar_bg_ver_small.png ├── App.config ├── App.xaml ├── App.xaml.cs ├── Common │ └── NativesApi.cs ├── Converters │ ├── Font2Size1.cs │ ├── Font2Size2.cs │ ├── Font2Size3.cs │ ├── IntToBool.cs │ └── IntToBoolRev.cs ├── FakeLegionZone.csproj ├── LZToolKit32.exe ├── LZToolKit64.exe ├── LZToolkit32.dll ├── LZToolkit64.dll ├── LZTrayPlugin.dll ├── LzUnHook32.dll ├── LzUnHook64.dll ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── CHANGEFILTERSTRUCT.cs │ ├── CopyDataStruct.cs │ ├── GameCfgInfo.cs │ ├── GameInfo.cs │ ├── GameModel.cs │ ├── LZ_MSG_SELF_RUN_LZMAIN.cs │ ├── LegionZoneFromType.cs │ └── PerformMointorData.cs ├── Plugin │ ├── Device.dll │ ├── GameDelegate.cs │ ├── GameEndedDelegate.cs │ ├── GameStartedDelegate.cs │ ├── LZSpeeding.dll │ ├── NvOcScanner.exe │ ├── NvOcScanner.exe.config │ ├── PUSBDevCtrl.dll │ ├── PWMI.dll │ ├── Pbase.dll │ ├── Platform.dll │ ├── PluginDllNotifyCallback.cs │ ├── PluginDlls.cs │ ├── PluginEventDelegate.cs │ ├── PluginNotifyCallback.cs │ ├── PluginNotifyCategory.cs │ ├── PluginProxyBase.cs │ ├── amd │ │ ├── AMDRyzenMasterDriver.cat │ │ ├── AMDRyzenMasterDriver.inf │ │ ├── AMDRyzenMasterDriver.sys │ │ ├── Device.dll │ │ ├── Platform.dll │ │ ├── RM1.dat │ │ └── amd_ags_x64.dll │ ├── amd_ags_x64.dll │ ├── pLOCtrl.dll │ └── phwcap.dll ├── PluginDll.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── Util │ ├── AnimationHelper.cs │ ├── CommandLine.cs │ ├── DialogUtil.cs │ ├── GlobalCurrentStatus.cs │ ├── JsonHelper.cs │ ├── LenovoOne.cs │ ├── LogHelper.cs │ ├── LudpHelper.cs │ ├── Message.cs │ ├── Optimize.cs │ ├── RegistryHelper.cs │ ├── UpdateVisitor.cs │ ├── Utils.cs │ └── VerifySignature.cs ├── dlls │ ├── Hardcodet.NotifyIcon.Wpf.dll │ └── OpenHardwareMonitorLib.dll ├── dxapp.exe ├── gaming.cfg ├── gaming2.cfg ├── images │ ├── button_close_click_16.png │ ├── button_close_click_32.png │ ├── button_close_hover_16.png │ ├── button_close_hover_32.png │ ├── button_close_normal_16.png │ ├── button_close_normal_32.png │ ├── button_general_click_120_36.png │ ├── button_general_click_240_72.png │ ├── button_general_disable_120_36.png │ ├── button_general_disable_240_72.png │ ├── button_general_hover_120_36.png │ ├── button_general_hover_240_72.png │ ├── button_general_normal_120_36.png │ ├── button_general_normal_240_72.png │ ├── button_secondary_click_120_36.png │ ├── button_secondary_click_240_72.png │ ├── button_secondary_disable_120_36.png │ ├── button_secondary_disable_240_72.png │ ├── button_secondary_hover_120_36.png │ ├── button_secondary_hover_240_72.png │ ├── button_secondary_normal_120_36.png │ ├── button_secondary_normal_240_72.png │ ├── check1.png │ ├── check2.png │ ├── checkbox_checked_18.png │ ├── checkbox_checked_36.png │ ├── checkbox_checked_disable_18.png │ ├── checkbox_checked_disable_36.png │ ├── checkbox_disable_18.png │ ├── checkbox_disable_36.png │ ├── checkbox_hover_18.png │ ├── checkbox_hover_36.png │ ├── checkbox_normal_18.png │ ├── checkbox_normal_36.png │ ├── external_device_keyboard_180.png │ ├── external_device_keyboard_90.png │ ├── external_device_mouse_180.png │ ├── external_device_mouse_90.png │ ├── icon_app_default_24.png │ ├── icon_app_default_48.png │ ├── icon_clean_memory_180_140.png │ ├── icon_clean_memory_90_70.png │ ├── icon_exit_click_26.png │ ├── icon_exit_click_52.png │ ├── icon_exit_hover_26.png │ ├── icon_exit_hover_52.png │ ├── icon_exit_normal_26.png │ ├── icon_exit_normal_52.png │ ├── icon_ok_18.png │ ├── icon_ok_36.png │ ├── icon_open_main_click_26.png │ ├── icon_open_main_click_52.png │ ├── icon_open_main_hover_26.png │ ├── icon_open_main_hover_52.png │ ├── icon_open_main_normal_26.png │ ├── icon_open_main_normal_52.png │ ├── icon_progress_18.png │ ├── icon_progress_36.png │ ├── icon_warning_18.png │ ├── icon_warning_36.png │ ├── icon_warning_46.png │ ├── icon_warning_92.png │ ├── lac_install_complete_180.png │ ├── lac_install_complete_90.png │ ├── legion_logo.ico │ ├── legion_logo_120.png │ ├── legion_logo_20.png │ ├── legion_logo_40.png │ ├── legion_logo_60.png │ ├── lz_tray.ico │ ├── min1.png │ ├── min2.png │ ├── power_ac_180.png │ ├── power_ac_90.png │ ├── power_pd_180.png │ ├── power_pd_90.png │ ├── radio1.png │ ├── radio2.png │ ├── speedball_background_226.png │ ├── speedball_background_452.png │ ├── speedball_border_158.png │ ├── speedball_border_316.png │ └── 成功.png └── legion_logo.ico ├── LibreHardwareMonitorLib ├── Hardware │ ├── Battery │ │ ├── Battery.cs │ │ ├── BatteryChemistry.cs │ │ └── BatteryGroup.cs │ ├── CompositeSensor.cs │ ├── Computer.cs │ ├── Control.cs │ ├── Controller │ │ ├── AeroCool │ │ │ ├── AeroCoolGroup.cs │ │ │ └── P7-H1.cs │ │ ├── AquaComputer │ │ │ ├── AquaComputerGroup.cs │ │ │ ├── AquastreamXT.cs │ │ │ ├── D5Next.cs │ │ │ ├── MPS.cs │ │ │ └── Octo.cs │ │ ├── Heatmaster │ │ │ ├── Heatmaster.cs │ │ │ └── HeatmasterGroup.cs │ │ ├── Nzxt │ │ │ ├── KrakenX3.cs │ │ │ └── NzxtGroup.cs │ │ └── TBalancer │ │ │ ├── TBalancer.cs │ │ │ └── TBalancerGroup.cs │ ├── Cpu │ │ ├── Amd0FCpu.cs │ │ ├── Amd10Cpu.cs │ │ ├── Amd17Cpu.cs │ │ ├── AmdCpu.cs │ │ ├── CpuGroup.cs │ │ ├── CpuId.cs │ │ ├── CpuLoad.cs │ │ ├── GenericCpu.cs │ │ └── IntelCpu.cs │ ├── D3DDisplayDevice.cs │ ├── FirmwareTable.cs │ ├── Gpu │ │ ├── AmdGpu.cs │ │ ├── AmdGpuGroup.cs │ │ ├── GenericGpu.cs │ │ ├── IntelGpuGroup.cs │ │ ├── IntelIntegratedGpu.cs │ │ ├── NvidiaGpu.cs │ │ └── NvidiaGroup.cs │ ├── GroupAffinity.cs │ ├── Hardware.cs │ ├── HardwareType.cs │ ├── IComputer.cs │ ├── IControl.cs │ ├── IElement.cs │ ├── IGroup.cs │ ├── IHardware.cs │ ├── IHardwareChanged.cs │ ├── IParameter.cs │ ├── ISensor.cs │ ├── ISensorLimits.cs │ ├── ISettings.cs │ ├── IVisitor.cs │ ├── Identifier.cs │ ├── InpOut.cs │ ├── KernelDriver.cs │ ├── Memory │ │ ├── GenericLinuxMemory.cs │ │ ├── GenericWindowsMemory.cs │ │ └── MemoryGroup.cs │ ├── Motherboard │ │ ├── Identification.cs │ │ ├── Lpc │ │ │ ├── Chip.cs │ │ │ ├── EC │ │ │ │ ├── EmbeddedController.cs │ │ │ │ ├── EmbeddedControllerReader.cs │ │ │ │ ├── EmbeddedControllerSource.cs │ │ │ │ ├── IEmbeddedControllerIO.cs │ │ │ │ ├── WindowsEmbeddedController.cs │ │ │ │ └── WindowsEmbeddedControllerIO.cs │ │ │ ├── F718XX.cs │ │ │ ├── ISuperIO.cs │ │ │ ├── IT87XX.cs │ │ │ ├── LMSensors.cs │ │ │ ├── LPcPort.cs │ │ │ ├── LpcIO.cs │ │ │ ├── Nct677X.cs │ │ │ └── W836XX.cs │ │ ├── Manufacturer.cs │ │ ├── Model.cs │ │ ├── Motherboard.cs │ │ ├── MotherboardGroup.cs │ │ └── SuperIOHardware.cs │ ├── Network │ │ ├── Network.cs │ │ └── NetworkGroup.cs │ ├── OpCode.cs │ ├── Parameter.cs │ ├── ParameterDescription.cs │ ├── Psu │ │ └── Corsair │ │ │ ├── CorsairPsu.cs │ │ │ └── CorsairPsuGroup.cs │ ├── Ring0.cs │ ├── RyzenSMU.cs │ ├── SMBios.cs │ ├── Sensor.cs │ ├── SensorVisitor.cs │ ├── Storage │ │ ├── ATAStorage.cs │ │ ├── AbstractStorage.cs │ │ ├── DebugSmart.cs │ │ ├── GenericHardDisk.cs │ │ ├── INVMeDrive.cs │ │ ├── ISmart.cs │ │ ├── NVMeGeneric.cs │ │ ├── NVMeHealthInfo.cs │ │ ├── NVMeInfo.cs │ │ ├── NVMeIntel.cs │ │ ├── NVMeIntelRst.cs │ │ ├── NVMeSamsung.cs │ │ ├── NVMeSmart.cs │ │ ├── NVMeWindows.cs │ │ ├── NamePrefixAttribute.cs │ │ ├── RequireSmartAttribute.cs │ │ ├── SmartAttribute.cs │ │ ├── SmartNames.cs │ │ ├── SsdIndilinx.cs │ │ ├── SsdIntel.cs │ │ ├── SsdMicron.cs │ │ ├── SsdPlextor.cs │ │ ├── SsdSamsung.cs │ │ ├── SsdSandforce.cs │ │ ├── StorageGeneric.cs │ │ ├── StorageGroup.cs │ │ ├── StorageInfo.cs │ │ ├── WindowsSmart.cs │ │ └── WindowsStorage.cs │ └── ThreadAffinity.cs ├── Interop │ ├── AdvApi32.cs │ ├── AtiAdlxx.cs │ ├── CfgMgr32.cs │ ├── D3dkmdt.cs │ ├── D3dkmth.cs │ ├── Ftd2xx.cs │ ├── Gdi32.cs │ ├── InpOut.cs │ ├── Kernel32.cs │ ├── LibC.cs │ ├── NtDll.cs │ ├── NvApi.cs │ ├── NvidiaML.cs │ ├── Ring0.cs │ ├── SetupApi.cs │ └── WinNt.cs ├── LibreHardwareMonitorLib.csproj ├── Resources │ ├── WinRing0.sys │ ├── WinRing0x64.sys │ ├── inpout32.dll │ ├── inpoutx64.dll │ └── packageicon.png └── Software │ └── OperatingSystem.cs ├── packages ├── LiteDB.4.1.4 │ ├── .signature.p7s │ ├── LiteDB.4.1.4.nupkg │ └── lib │ │ ├── net35 │ │ ├── LiteDB.dll │ │ └── LiteDB.xml │ │ ├── net40 │ │ ├── LiteDB.dll │ │ └── LiteDB.xml │ │ ├── netstandard1.3 │ │ ├── LiteDB.dll │ │ └── LiteDB.xml │ │ └── netstandard2.0 │ │ ├── LiteDB.dll │ │ └── LiteDB.xml ├── Newtonsoft.Json.12.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.3.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png └── Newtonsoft.Json.13.0.1 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.13.0.1.nupkg │ ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | .vs -------------------------------------------------------------------------------- /FakeLegionZone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone.sln -------------------------------------------------------------------------------- /FakeLegionZone/1.0.0/ui/images/inforbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/1.0.0/ui/images/inforbar_bg.png -------------------------------------------------------------------------------- /FakeLegionZone/1.0.0/ui/images/inforbar_bg_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/1.0.0/ui/images/inforbar_bg_big.png -------------------------------------------------------------------------------- /FakeLegionZone/1.0.0/ui/images/inforbar_bg_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/1.0.0/ui/images/inforbar_bg_small.png -------------------------------------------------------------------------------- /FakeLegionZone/1.0.0/ui/images/inforbar_bg_ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/1.0.0/ui/images/inforbar_bg_ver.png -------------------------------------------------------------------------------- /FakeLegionZone/1.0.0/ui/images/inforbar_bg_ver_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/1.0.0/ui/images/inforbar_bg_ver_big.png -------------------------------------------------------------------------------- /FakeLegionZone/1.0.0/ui/images/inforbar_bg_ver_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/1.0.0/ui/images/inforbar_bg_ver_small.png -------------------------------------------------------------------------------- /FakeLegionZone/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/App.config -------------------------------------------------------------------------------- /FakeLegionZone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/App.xaml -------------------------------------------------------------------------------- /FakeLegionZone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/App.xaml.cs -------------------------------------------------------------------------------- /FakeLegionZone/Common/NativesApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Common/NativesApi.cs -------------------------------------------------------------------------------- /FakeLegionZone/Converters/Font2Size1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Converters/Font2Size1.cs -------------------------------------------------------------------------------- /FakeLegionZone/Converters/Font2Size2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Converters/Font2Size2.cs -------------------------------------------------------------------------------- /FakeLegionZone/Converters/Font2Size3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Converters/Font2Size3.cs -------------------------------------------------------------------------------- /FakeLegionZone/Converters/IntToBool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Converters/IntToBool.cs -------------------------------------------------------------------------------- /FakeLegionZone/Converters/IntToBoolRev.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Converters/IntToBoolRev.cs -------------------------------------------------------------------------------- /FakeLegionZone/FakeLegionZone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/FakeLegionZone.csproj -------------------------------------------------------------------------------- /FakeLegionZone/LZToolKit32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/LZToolKit32.exe -------------------------------------------------------------------------------- /FakeLegionZone/LZToolKit64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/LZToolKit64.exe -------------------------------------------------------------------------------- /FakeLegionZone/LZToolkit32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/LZToolkit32.dll -------------------------------------------------------------------------------- /FakeLegionZone/LZToolkit64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/LZToolkit64.dll -------------------------------------------------------------------------------- /FakeLegionZone/LZTrayPlugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/LZTrayPlugin.dll -------------------------------------------------------------------------------- /FakeLegionZone/LzUnHook32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/LzUnHook32.dll -------------------------------------------------------------------------------- /FakeLegionZone/LzUnHook64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/LzUnHook64.dll -------------------------------------------------------------------------------- /FakeLegionZone/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/MainWindow.xaml -------------------------------------------------------------------------------- /FakeLegionZone/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/MainWindow.xaml.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/CHANGEFILTERSTRUCT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/CHANGEFILTERSTRUCT.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/CopyDataStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/CopyDataStruct.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/GameCfgInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/GameCfgInfo.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/GameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/GameInfo.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/GameModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/GameModel.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/LZ_MSG_SELF_RUN_LZMAIN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/LZ_MSG_SELF_RUN_LZMAIN.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/LegionZoneFromType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/LegionZoneFromType.cs -------------------------------------------------------------------------------- /FakeLegionZone/Model/PerformMointorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Model/PerformMointorData.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/Device.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/Device.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/GameDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/GameDelegate.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/GameEndedDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/GameEndedDelegate.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/GameStartedDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/GameStartedDelegate.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/LZSpeeding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/LZSpeeding.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/NvOcScanner.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/NvOcScanner.exe -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/NvOcScanner.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/NvOcScanner.exe.config -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PUSBDevCtrl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PUSBDevCtrl.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PWMI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PWMI.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/Pbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/Pbase.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/Platform.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PluginDllNotifyCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PluginDllNotifyCallback.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PluginDlls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PluginDlls.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PluginEventDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PluginEventDelegate.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PluginNotifyCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PluginNotifyCallback.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PluginNotifyCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PluginNotifyCategory.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/PluginProxyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/PluginProxyBase.cs -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd/AMDRyzenMasterDriver.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd/AMDRyzenMasterDriver.cat -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd/AMDRyzenMasterDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd/AMDRyzenMasterDriver.inf -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd/AMDRyzenMasterDriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd/AMDRyzenMasterDriver.sys -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd/Device.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd/Device.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd/Platform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd/Platform.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd/RM1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd/RM1.dat -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd/amd_ags_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd/amd_ags_x64.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/amd_ags_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/amd_ags_x64.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/pLOCtrl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/pLOCtrl.dll -------------------------------------------------------------------------------- /FakeLegionZone/Plugin/phwcap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Plugin/phwcap.dll -------------------------------------------------------------------------------- /FakeLegionZone/PluginDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/PluginDll.cs -------------------------------------------------------------------------------- /FakeLegionZone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FakeLegionZone/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FakeLegionZone/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Properties/Resources.resx -------------------------------------------------------------------------------- /FakeLegionZone/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FakeLegionZone/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Properties/Settings.settings -------------------------------------------------------------------------------- /FakeLegionZone/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Properties/app.manifest -------------------------------------------------------------------------------- /FakeLegionZone/Util/AnimationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/AnimationHelper.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/CommandLine.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/DialogUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/DialogUtil.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/GlobalCurrentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/GlobalCurrentStatus.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/JsonHelper.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/LenovoOne.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/LenovoOne.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/LogHelper.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/LudpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/LudpHelper.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/Message.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/Optimize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/Optimize.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/RegistryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/RegistryHelper.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/UpdateVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/UpdateVisitor.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/Utils.cs -------------------------------------------------------------------------------- /FakeLegionZone/Util/VerifySignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/Util/VerifySignature.cs -------------------------------------------------------------------------------- /FakeLegionZone/dlls/Hardcodet.NotifyIcon.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/dlls/Hardcodet.NotifyIcon.Wpf.dll -------------------------------------------------------------------------------- /FakeLegionZone/dlls/OpenHardwareMonitorLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/dlls/OpenHardwareMonitorLib.dll -------------------------------------------------------------------------------- /FakeLegionZone/dxapp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/dxapp.exe -------------------------------------------------------------------------------- /FakeLegionZone/gaming.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/gaming.cfg -------------------------------------------------------------------------------- /FakeLegionZone/gaming2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/gaming2.cfg -------------------------------------------------------------------------------- /FakeLegionZone/images/button_close_click_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_close_click_16.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_close_click_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_close_click_32.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_close_hover_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_close_hover_16.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_close_hover_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_close_hover_32.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_close_normal_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_close_normal_16.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_close_normal_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_close_normal_32.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_click_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_click_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_click_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_click_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_disable_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_disable_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_disable_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_disable_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_hover_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_hover_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_hover_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_hover_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_normal_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_normal_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_general_normal_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_general_normal_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_click_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_click_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_click_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_click_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_disable_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_disable_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_disable_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_disable_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_hover_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_hover_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_hover_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_hover_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_normal_120_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_normal_120_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/button_secondary_normal_240_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/button_secondary_normal_240_72.png -------------------------------------------------------------------------------- /FakeLegionZone/images/check1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/check1.png -------------------------------------------------------------------------------- /FakeLegionZone/images/check2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/check2.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_checked_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_checked_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_checked_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_checked_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_checked_disable_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_checked_disable_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_checked_disable_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_checked_disable_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_disable_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_disable_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_disable_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_disable_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_hover_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_hover_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_hover_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_hover_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_normal_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_normal_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/checkbox_normal_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/checkbox_normal_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/external_device_keyboard_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/external_device_keyboard_180.png -------------------------------------------------------------------------------- /FakeLegionZone/images/external_device_keyboard_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/external_device_keyboard_90.png -------------------------------------------------------------------------------- /FakeLegionZone/images/external_device_mouse_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/external_device_mouse_180.png -------------------------------------------------------------------------------- /FakeLegionZone/images/external_device_mouse_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/external_device_mouse_90.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_app_default_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_app_default_24.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_app_default_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_app_default_48.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_clean_memory_180_140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_clean_memory_180_140.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_clean_memory_90_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_clean_memory_90_70.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_exit_click_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_exit_click_26.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_exit_click_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_exit_click_52.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_exit_hover_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_exit_hover_26.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_exit_hover_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_exit_hover_52.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_exit_normal_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_exit_normal_26.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_exit_normal_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_exit_normal_52.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_ok_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_ok_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_ok_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_ok_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_open_main_click_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_open_main_click_26.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_open_main_click_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_open_main_click_52.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_open_main_hover_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_open_main_hover_26.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_open_main_hover_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_open_main_hover_52.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_open_main_normal_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_open_main_normal_26.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_open_main_normal_52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_open_main_normal_52.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_progress_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_progress_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_progress_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_progress_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_warning_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_warning_18.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_warning_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_warning_36.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_warning_46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_warning_46.png -------------------------------------------------------------------------------- /FakeLegionZone/images/icon_warning_92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/icon_warning_92.png -------------------------------------------------------------------------------- /FakeLegionZone/images/lac_install_complete_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/lac_install_complete_180.png -------------------------------------------------------------------------------- /FakeLegionZone/images/lac_install_complete_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/lac_install_complete_90.png -------------------------------------------------------------------------------- /FakeLegionZone/images/legion_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/legion_logo.ico -------------------------------------------------------------------------------- /FakeLegionZone/images/legion_logo_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/legion_logo_120.png -------------------------------------------------------------------------------- /FakeLegionZone/images/legion_logo_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/legion_logo_20.png -------------------------------------------------------------------------------- /FakeLegionZone/images/legion_logo_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/legion_logo_40.png -------------------------------------------------------------------------------- /FakeLegionZone/images/legion_logo_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/legion_logo_60.png -------------------------------------------------------------------------------- /FakeLegionZone/images/lz_tray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/lz_tray.ico -------------------------------------------------------------------------------- /FakeLegionZone/images/min1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/min1.png -------------------------------------------------------------------------------- /FakeLegionZone/images/min2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/min2.png -------------------------------------------------------------------------------- /FakeLegionZone/images/power_ac_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/power_ac_180.png -------------------------------------------------------------------------------- /FakeLegionZone/images/power_ac_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/power_ac_90.png -------------------------------------------------------------------------------- /FakeLegionZone/images/power_pd_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/power_pd_180.png -------------------------------------------------------------------------------- /FakeLegionZone/images/power_pd_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/power_pd_90.png -------------------------------------------------------------------------------- /FakeLegionZone/images/radio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/radio1.png -------------------------------------------------------------------------------- /FakeLegionZone/images/radio2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/radio2.png -------------------------------------------------------------------------------- /FakeLegionZone/images/speedball_background_226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/speedball_background_226.png -------------------------------------------------------------------------------- /FakeLegionZone/images/speedball_background_452.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/speedball_background_452.png -------------------------------------------------------------------------------- /FakeLegionZone/images/speedball_border_158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/speedball_border_158.png -------------------------------------------------------------------------------- /FakeLegionZone/images/speedball_border_316.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/speedball_border_316.png -------------------------------------------------------------------------------- /FakeLegionZone/images/成功.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/images/成功.png -------------------------------------------------------------------------------- /FakeLegionZone/legion_logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/FakeLegionZone/legion_logo.ico -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Battery/Battery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Battery/Battery.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Battery/BatteryChemistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Battery/BatteryChemistry.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Battery/BatteryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Battery/BatteryGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/CompositeSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/CompositeSensor.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Computer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Computer.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Control.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/AeroCool/AeroCoolGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/AeroCool/AeroCoolGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/AeroCool/P7-H1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/AeroCool/P7-H1.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/AquaComputerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/AquaComputerGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/AquastreamXT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/AquastreamXT.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/D5Next.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/D5Next.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/MPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/MPS.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/Octo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/AquaComputer/Octo.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/Heatmaster/Heatmaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/Heatmaster/Heatmaster.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/Heatmaster/HeatmasterGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/Heatmaster/HeatmasterGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/Nzxt/KrakenX3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/Nzxt/KrakenX3.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/Nzxt/NzxtGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/Nzxt/NzxtGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/TBalancer/TBalancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/TBalancer/TBalancer.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Controller/TBalancer/TBalancerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Controller/TBalancer/TBalancerGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/Amd0FCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/Amd0FCpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/Amd10Cpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/Amd10Cpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/Amd17Cpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/Amd17Cpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/AmdCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/AmdCpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/CpuGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/CpuGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/CpuId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/CpuId.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/CpuLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/CpuLoad.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/GenericCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/GenericCpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Cpu/IntelCpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Cpu/IntelCpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/D3DDisplayDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/D3DDisplayDevice.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/FirmwareTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/FirmwareTable.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Gpu/AmdGpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Gpu/AmdGpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Gpu/AmdGpuGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Gpu/AmdGpuGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Gpu/GenericGpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Gpu/GenericGpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Gpu/IntelGpuGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Gpu/IntelGpuGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Gpu/IntelIntegratedGpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Gpu/IntelIntegratedGpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Gpu/NvidiaGpu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Gpu/NvidiaGpu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Gpu/NvidiaGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Gpu/NvidiaGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/GroupAffinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/GroupAffinity.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Hardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Hardware.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/HardwareType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/HardwareType.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IComputer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IComputer.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IControl.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IElement.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IHardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IHardware.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IHardwareChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IHardwareChanged.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IParameter.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/ISensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/ISensor.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/ISensorLimits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/ISensorLimits.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/ISettings.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/IVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/IVisitor.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Identifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Identifier.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/InpOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/InpOut.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/KernelDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/KernelDriver.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Memory/GenericLinuxMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Memory/GenericLinuxMemory.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Memory/GenericWindowsMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Memory/GenericWindowsMemory.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Memory/MemoryGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Memory/MemoryGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Identification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Identification.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/Chip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/Chip.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/EmbeddedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/EmbeddedController.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/EmbeddedControllerReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/EmbeddedControllerReader.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/EmbeddedControllerSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/EmbeddedControllerSource.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/IEmbeddedControllerIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/IEmbeddedControllerIO.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/WindowsEmbeddedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/WindowsEmbeddedController.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/WindowsEmbeddedControllerIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/EC/WindowsEmbeddedControllerIO.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/F718XX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/F718XX.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/ISuperIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/ISuperIO.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/IT87XX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/IT87XX.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/LMSensors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/LMSensors.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/LPcPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/LPcPort.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/LpcIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/LpcIO.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/Nct677X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/Nct677X.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/W836XX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Lpc/W836XX.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Manufacturer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Manufacturer.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Model.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/Motherboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/Motherboard.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/MotherboardGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/MotherboardGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Motherboard/SuperIOHardware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Motherboard/SuperIOHardware.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Network/Network.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Network/Network.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Network/NetworkGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Network/NetworkGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/OpCode.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Parameter.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/ParameterDescription.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Psu/Corsair/CorsairPsu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Psu/Corsair/CorsairPsu.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Psu/Corsair/CorsairPsuGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Psu/Corsair/CorsairPsuGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Ring0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Ring0.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/RyzenSMU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/RyzenSMU.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/SMBios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/SMBios.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Sensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Sensor.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/SensorVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/SensorVisitor.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/ATAStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/ATAStorage.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/AbstractStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/AbstractStorage.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/DebugSmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/DebugSmart.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/GenericHardDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/GenericHardDisk.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/INVMeDrive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/INVMeDrive.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/ISmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/ISmart.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeGeneric.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeHealthInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeHealthInfo.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeInfo.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeIntel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeIntel.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeIntelRst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeIntelRst.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeSamsung.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeSamsung.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeSmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeSmart.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NVMeWindows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NVMeWindows.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/NamePrefixAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/NamePrefixAttribute.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/RequireSmartAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/RequireSmartAttribute.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SmartAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SmartAttribute.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SmartNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SmartNames.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SsdIndilinx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SsdIndilinx.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SsdIntel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SsdIntel.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SsdMicron.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SsdMicron.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SsdPlextor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SsdPlextor.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SsdSamsung.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SsdSamsung.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/SsdSandforce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/SsdSandforce.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/StorageGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/StorageGeneric.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/StorageGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/StorageGroup.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/StorageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/StorageInfo.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/WindowsSmart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/WindowsSmart.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/Storage/WindowsStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/Storage/WindowsStorage.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Hardware/ThreadAffinity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Hardware/ThreadAffinity.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/AdvApi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/AdvApi32.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/AtiAdlxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/AtiAdlxx.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/CfgMgr32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/CfgMgr32.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/D3dkmdt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/D3dkmdt.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/D3dkmth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/D3dkmth.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/Ftd2xx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/Ftd2xx.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/Gdi32.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/InpOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/InpOut.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/Kernel32.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/LibC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/LibC.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/NtDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/NtDll.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/NvApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/NvApi.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/NvidiaML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/NvidiaML.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/Ring0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/Ring0.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/SetupApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/SetupApi.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Interop/WinNt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Interop/WinNt.cs -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/LibreHardwareMonitorLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/LibreHardwareMonitorLib.csproj -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Resources/WinRing0.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Resources/WinRing0.sys -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Resources/WinRing0x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Resources/WinRing0x64.sys -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Resources/inpout32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Resources/inpout32.dll -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Resources/inpoutx64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Resources/inpoutx64.dll -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Resources/packageicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Resources/packageicon.png -------------------------------------------------------------------------------- /LibreHardwareMonitorLib/Software/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/LibreHardwareMonitorLib/Software/OperatingSystem.cs -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/.signature.p7s -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/LiteDB.4.1.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/LiteDB.4.1.4.nupkg -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/net35/LiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/net35/LiteDB.dll -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/net35/LiteDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/net35/LiteDB.xml -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/net40/LiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/net40/LiteDB.dll -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/net40/LiteDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/net40/LiteDB.xml -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/netstandard1.3/LiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/netstandard1.3/LiteDB.dll -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/netstandard1.3/LiteDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/netstandard1.3/LiteDB.xml -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/netstandard2.0/LiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/netstandard2.0/LiteDB.dll -------------------------------------------------------------------------------- /packages/LiteDB.4.1.4/lib/netstandard2.0/LiteDB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/LiteDB.4.1.4/lib/netstandard2.0/LiteDB.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/Newtonsoft.Json.13.0.1.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.13.0.1/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/packages/Newtonsoft.Json.13.0.1/packageIcon.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zixing131/FakeLegionZone/HEAD/readme.md --------------------------------------------------------------------------------