├── .github └── Images │ ├── Ai │ ├── 1x │ │ └── banner.png │ └── banner.ai │ ├── alphaclicker-dark.png │ ├── alphaclicker.png │ ├── banner.png │ ├── otherclickers.png │ └── showcase.gif ├── Alphaclicker ├── .gitignore ├── AlphaClicker.csproj ├── AlphaClicker.sln ├── App.config ├── App.xaml ├── App.xaml.cs ├── ChangeHotkey.xaml ├── ChangeHotkey.xaml.cs ├── GetCursorPos.xaml ├── GetCursorPos.xaml.cs ├── KeyDefinitions.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Registry.cs ├── Templates │ └── Templates.xaml ├── Themes │ ├── DarkTheme.xaml │ ├── LightTheme.xaml │ └── ThemesController.cs ├── WinApi.cs ├── WindowSettings.xaml ├── WindowSettings.xaml.cs └── icon.ico ├── Icon ├── 1x │ └── main.png ├── icon.ai └── icon.ico ├── LICENSE └── README.md /.github/Images/Ai/1x/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/.github/Images/Ai/1x/banner.png -------------------------------------------------------------------------------- /.github/Images/Ai/banner.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/.github/Images/Ai/banner.ai -------------------------------------------------------------------------------- /.github/Images/alphaclicker-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/.github/Images/alphaclicker-dark.png -------------------------------------------------------------------------------- /.github/Images/alphaclicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/.github/Images/alphaclicker.png -------------------------------------------------------------------------------- /.github/Images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/.github/Images/banner.png -------------------------------------------------------------------------------- /.github/Images/otherclickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/.github/Images/otherclickers.png -------------------------------------------------------------------------------- /.github/Images/showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/.github/Images/showcase.gif -------------------------------------------------------------------------------- /Alphaclicker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/.gitignore -------------------------------------------------------------------------------- /Alphaclicker/AlphaClicker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/AlphaClicker.csproj -------------------------------------------------------------------------------- /Alphaclicker/AlphaClicker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/AlphaClicker.sln -------------------------------------------------------------------------------- /Alphaclicker/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/App.config -------------------------------------------------------------------------------- /Alphaclicker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/App.xaml -------------------------------------------------------------------------------- /Alphaclicker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/App.xaml.cs -------------------------------------------------------------------------------- /Alphaclicker/ChangeHotkey.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/ChangeHotkey.xaml -------------------------------------------------------------------------------- /Alphaclicker/ChangeHotkey.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/ChangeHotkey.xaml.cs -------------------------------------------------------------------------------- /Alphaclicker/GetCursorPos.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/GetCursorPos.xaml -------------------------------------------------------------------------------- /Alphaclicker/GetCursorPos.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/GetCursorPos.xaml.cs -------------------------------------------------------------------------------- /Alphaclicker/KeyDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/KeyDefinitions.cs -------------------------------------------------------------------------------- /Alphaclicker/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/MainWindow.xaml -------------------------------------------------------------------------------- /Alphaclicker/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Alphaclicker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Alphaclicker/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Alphaclicker/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Properties/Resources.resx -------------------------------------------------------------------------------- /Alphaclicker/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Alphaclicker/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Properties/Settings.settings -------------------------------------------------------------------------------- /Alphaclicker/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Registry.cs -------------------------------------------------------------------------------- /Alphaclicker/Templates/Templates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Templates/Templates.xaml -------------------------------------------------------------------------------- /Alphaclicker/Themes/DarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Themes/DarkTheme.xaml -------------------------------------------------------------------------------- /Alphaclicker/Themes/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Themes/LightTheme.xaml -------------------------------------------------------------------------------- /Alphaclicker/Themes/ThemesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/Themes/ThemesController.cs -------------------------------------------------------------------------------- /Alphaclicker/WinApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/WinApi.cs -------------------------------------------------------------------------------- /Alphaclicker/WindowSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/WindowSettings.xaml -------------------------------------------------------------------------------- /Alphaclicker/WindowSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/WindowSettings.xaml.cs -------------------------------------------------------------------------------- /Alphaclicker/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Alphaclicker/icon.ico -------------------------------------------------------------------------------- /Icon/1x/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Icon/1x/main.png -------------------------------------------------------------------------------- /Icon/icon.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Icon/icon.ai -------------------------------------------------------------------------------- /Icon/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/Icon/icon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robiot/AlphaClicker/HEAD/README.md --------------------------------------------------------------------------------