Simple Bindings to the Nakama library!
Read the documentation.
unsafe
calls!Add the following to you Cargo.toml file:
nakama-rs = "*"
Use it like so:
rust
use nakama_rs::*;
fn main() {
let mut client = ApiClient::new("defaultkey", "127.0.0.1", 7350, "http");
client.authenticate("email@email.com", "password");
client.tick();
}
For more examples, see the documentation and examples.