├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── hack.cpp ├── hack.h ├── helper.cpp ├── helper.h ├── jwsettings.cpp ├── jwsettings.h ├── main.cpp ├── offsets.h ├── remote.cpp ├── remote.h ├── settings.h ├── settings_example.cfg ├── types.h ├── window.cpp └── window.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/README.md -------------------------------------------------------------------------------- /hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/hack.cpp -------------------------------------------------------------------------------- /hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/hack.h -------------------------------------------------------------------------------- /helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/helper.cpp -------------------------------------------------------------------------------- /helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/helper.h -------------------------------------------------------------------------------- /jwsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/jwsettings.cpp -------------------------------------------------------------------------------- /jwsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/jwsettings.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/main.cpp -------------------------------------------------------------------------------- /offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/offsets.h -------------------------------------------------------------------------------- /remote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/remote.cpp -------------------------------------------------------------------------------- /remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/remote.h -------------------------------------------------------------------------------- /settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/settings.h -------------------------------------------------------------------------------- /settings_example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/settings_example.cfg -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/types.h -------------------------------------------------------------------------------- /window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/window.cpp -------------------------------------------------------------------------------- /window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalius/jwaim/HEAD/window.h --------------------------------------------------------------------------------