Skip to content
Ali Hussain edited this page Sep 28, 2023 · 2 revisions

ARCropolis API

This is a short tutorial for introducing developers to the Arcropolis API. Readers are expected to have at least a basic understanding of Rust and Skyline plugins beforehand.

First off, to begin adding support, add arcropolis_api to your Cargo.toml file:

arcropolis-api = { git = "https://github.com/Raytwo/arcropolis_api" }

Any time you need to update this, you can do so with the following command:

cargo update -p arcropolis-api

Now onto actually using it!

Clone this wiki locally