├── README.md ├── example ├── .gitignore ├── CMakeLists.txt ├── generate.bat ├── include │ ├── examples │ │ ├── ExampleBlipEventHandler.hpp │ │ ├── ExampleCheckpointEventHandler.hpp │ │ ├── ExampleColshapeEventHandler.hpp │ │ ├── ExampleConnectionEventHandler.hpp │ │ ├── ExampleEntityEventHandler.hpp │ │ ├── ExampleLocalEventEventHandler.hpp │ │ ├── ExamplePlayerEventHandler.hpp │ │ ├── ExampleServerEventHandler.hpp │ │ ├── ExampleTickEventHandler.hpp │ │ └── ExampleVehicleEventHandler.hpp │ └── rage_log.hpp └── src │ └── main.cpp ├── handlers ├── IBlipHandler.hpp ├── ICheckpointHandler.hpp ├── IColshapeHandler.hpp ├── IConnectionHandler.hpp ├── IEntityHandler.hpp ├── ILocalEventHandler.hpp ├── IPlayerHandler.hpp ├── IServerHandler.hpp ├── ITickHandler.hpp └── IVehicleHandler.hpp ├── objects ├── IBlip.hpp ├── ICheckpoint.hpp ├── IColshape.hpp ├── IDummyEntity.hpp ├── IEntity.hpp ├── IMarker.hpp ├── IObject.hpp ├── IPickup.hpp ├── IPlayer.hpp ├── ITextLabel.hpp └── IVehicle.hpp ├── rage_sdk.hpp └── types.hpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/generate.bat -------------------------------------------------------------------------------- /example/include/examples/ExampleBlipEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleBlipEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleCheckpointEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleCheckpointEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleColshapeEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleColshapeEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleConnectionEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleConnectionEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleEntityEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleEntityEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleLocalEventEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleLocalEventEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExamplePlayerEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExamplePlayerEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleServerEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleServerEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleTickEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleTickEventHandler.hpp -------------------------------------------------------------------------------- /example/include/examples/ExampleVehicleEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/examples/ExampleVehicleEventHandler.hpp -------------------------------------------------------------------------------- /example/include/rage_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/include/rage_log.hpp -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /handlers/IBlipHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/IBlipHandler.hpp -------------------------------------------------------------------------------- /handlers/ICheckpointHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/ICheckpointHandler.hpp -------------------------------------------------------------------------------- /handlers/IColshapeHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/IColshapeHandler.hpp -------------------------------------------------------------------------------- /handlers/IConnectionHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/IConnectionHandler.hpp -------------------------------------------------------------------------------- /handlers/IEntityHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/IEntityHandler.hpp -------------------------------------------------------------------------------- /handlers/ILocalEventHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/ILocalEventHandler.hpp -------------------------------------------------------------------------------- /handlers/IPlayerHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/IPlayerHandler.hpp -------------------------------------------------------------------------------- /handlers/IServerHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/IServerHandler.hpp -------------------------------------------------------------------------------- /handlers/ITickHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/ITickHandler.hpp -------------------------------------------------------------------------------- /handlers/IVehicleHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/handlers/IVehicleHandler.hpp -------------------------------------------------------------------------------- /objects/IBlip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IBlip.hpp -------------------------------------------------------------------------------- /objects/ICheckpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/ICheckpoint.hpp -------------------------------------------------------------------------------- /objects/IColshape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IColshape.hpp -------------------------------------------------------------------------------- /objects/IDummyEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IDummyEntity.hpp -------------------------------------------------------------------------------- /objects/IEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IEntity.hpp -------------------------------------------------------------------------------- /objects/IMarker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IMarker.hpp -------------------------------------------------------------------------------- /objects/IObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IObject.hpp -------------------------------------------------------------------------------- /objects/IPickup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IPickup.hpp -------------------------------------------------------------------------------- /objects/IPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IPlayer.hpp -------------------------------------------------------------------------------- /objects/ITextLabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/ITextLabel.hpp -------------------------------------------------------------------------------- /objects/IVehicle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/objects/IVehicle.hpp -------------------------------------------------------------------------------- /rage_sdk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/rage_sdk.hpp -------------------------------------------------------------------------------- /types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modulecnw/ragemp-cppsdk/HEAD/types.hpp --------------------------------------------------------------------------------