├── .gitignore ├── LICENSE ├── README.md ├── assets ├── logo.ico ├── logo.png └── welcome.png ├── compile.bat └── minescript.ahk /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/histefanhere/XAHK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/histefanhere/XAHK/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/histefanhere/XAHK/HEAD/assets/logo.ico -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/histefanhere/XAHK/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/histefanhere/XAHK/HEAD/assets/welcome.png -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/histefanhere/XAHK/HEAD/compile.bat -------------------------------------------------------------------------------- /minescript.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/histefanhere/XAHK/HEAD/minescript.ahk --------------------------------------------------------------------------------