├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── Android.mk ├── Application.mk ├── LICENSE ├── cleoplus ├── ai.cpp ├── audio.cpp ├── bones.cpp ├── colpoint.cpp ├── drawing.cpp ├── drawing.h ├── environment.cpp ├── events.cpp ├── extentvars.cpp ├── input.cpp ├── list.cpp ├── math.cpp ├── memory.cpp ├── misc.cpp ├── nosave.cpp ├── pickup.cpp ├── radarblip.cpp ├── screen.cpp ├── scriptents.cpp ├── specialmodels.cpp ├── timer.cpp └── types.cpp ├── externs.cpp ├── externs.h ├── main.cpp ├── newopcodes └── drawing.h └── txdloader.cpp /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/.gitmodules -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/Android.mk -------------------------------------------------------------------------------- /Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/Application.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /cleoplus/ai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/ai.cpp -------------------------------------------------------------------------------- /cleoplus/audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/audio.cpp -------------------------------------------------------------------------------- /cleoplus/bones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/bones.cpp -------------------------------------------------------------------------------- /cleoplus/colpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/colpoint.cpp -------------------------------------------------------------------------------- /cleoplus/drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/drawing.cpp -------------------------------------------------------------------------------- /cleoplus/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/drawing.h -------------------------------------------------------------------------------- /cleoplus/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/environment.cpp -------------------------------------------------------------------------------- /cleoplus/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/events.cpp -------------------------------------------------------------------------------- /cleoplus/extentvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/extentvars.cpp -------------------------------------------------------------------------------- /cleoplus/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/input.cpp -------------------------------------------------------------------------------- /cleoplus/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/list.cpp -------------------------------------------------------------------------------- /cleoplus/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/math.cpp -------------------------------------------------------------------------------- /cleoplus/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/memory.cpp -------------------------------------------------------------------------------- /cleoplus/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/misc.cpp -------------------------------------------------------------------------------- /cleoplus/nosave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/nosave.cpp -------------------------------------------------------------------------------- /cleoplus/pickup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/pickup.cpp -------------------------------------------------------------------------------- /cleoplus/radarblip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/radarblip.cpp -------------------------------------------------------------------------------- /cleoplus/screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/screen.cpp -------------------------------------------------------------------------------- /cleoplus/scriptents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/scriptents.cpp -------------------------------------------------------------------------------- /cleoplus/specialmodels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/specialmodels.cpp -------------------------------------------------------------------------------- /cleoplus/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/timer.cpp -------------------------------------------------------------------------------- /cleoplus/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/cleoplus/types.cpp -------------------------------------------------------------------------------- /externs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/externs.cpp -------------------------------------------------------------------------------- /externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/externs.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/main.cpp -------------------------------------------------------------------------------- /newopcodes/drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndroidModLoader/GTASA_CLEOPlus/HEAD/newopcodes/drawing.h -------------------------------------------------------------------------------- /txdloader.cpp: -------------------------------------------------------------------------------- 1 | #include "externs.h" 2 | 3 | // Not required at this moment. --------------------------------------------------------------------------------