├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── Android.mk ├── Application.mk ├── LICENSE ├── README.md ├── main.cpp └── ndkpath.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_MoreSettings/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_MoreSettings/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_MoreSettings/HEAD/.gitmodules -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_MoreSettings/HEAD/Android.mk -------------------------------------------------------------------------------- /Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_MoreSettings/HEAD/Application.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_MoreSettings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | More settings in GTASA! -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_MoreSettings/HEAD/main.cpp -------------------------------------------------------------------------------- /ndkpath.txt: -------------------------------------------------------------------------------- 1 | D:\android-ndk --------------------------------------------------------------------------------