├── .gitignore ├── Base.vcxproj ├── Base.vcxproj.filters ├── LICENSE ├── Public API.sln ├── README.md ├── Server.Launcher.lib ├── api.cpp ├── api.h ├── makefile ├── sdk ├── APICef.h ├── APICheckpoint.h ├── APIEntity.h ├── APINpc.h ├── APIObject.h ├── APIPlayer.h ├── APIServer.h ├── APIVehicle.h ├── APIVisual.h ├── APIWorld.h ├── CMaths.h ├── CVector2.cpp ├── CVector2.h ├── CVector3.cpp ├── CVector3.h ├── CVector4.h ├── Plane.cpp ├── Plane.h ├── Quaternion.cpp ├── Quaternion.h └── Structs.h ├── stdafx.cpp └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/.gitignore -------------------------------------------------------------------------------- /Base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/Base.vcxproj -------------------------------------------------------------------------------- /Base.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/Base.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/LICENSE -------------------------------------------------------------------------------- /Public API.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/Public API.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/README.md -------------------------------------------------------------------------------- /Server.Launcher.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/Server.Launcher.lib -------------------------------------------------------------------------------- /api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/api.cpp -------------------------------------------------------------------------------- /api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/api.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/makefile -------------------------------------------------------------------------------- /sdk/APICef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APICef.h -------------------------------------------------------------------------------- /sdk/APICheckpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APICheckpoint.h -------------------------------------------------------------------------------- /sdk/APIEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APIEntity.h -------------------------------------------------------------------------------- /sdk/APINpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APINpc.h -------------------------------------------------------------------------------- /sdk/APIObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APIObject.h -------------------------------------------------------------------------------- /sdk/APIPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APIPlayer.h -------------------------------------------------------------------------------- /sdk/APIServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APIServer.h -------------------------------------------------------------------------------- /sdk/APIVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APIVehicle.h -------------------------------------------------------------------------------- /sdk/APIVisual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APIVisual.h -------------------------------------------------------------------------------- /sdk/APIWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/APIWorld.h -------------------------------------------------------------------------------- /sdk/CMaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/CMaths.h -------------------------------------------------------------------------------- /sdk/CVector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/CVector2.cpp -------------------------------------------------------------------------------- /sdk/CVector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/CVector2.h -------------------------------------------------------------------------------- /sdk/CVector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/CVector3.cpp -------------------------------------------------------------------------------- /sdk/CVector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/CVector3.h -------------------------------------------------------------------------------- /sdk/CVector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/CVector4.h -------------------------------------------------------------------------------- /sdk/Plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/Plane.cpp -------------------------------------------------------------------------------- /sdk/Plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/Plane.h -------------------------------------------------------------------------------- /sdk/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/Quaternion.cpp -------------------------------------------------------------------------------- /sdk/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/Quaternion.h -------------------------------------------------------------------------------- /sdk/Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/sdk/Structs.h -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiveMP/FiveMP-API/HEAD/stdafx.h --------------------------------------------------------------------------------