osrs-buffer

Build API Crate dependency status Discord

A buffer for Oldschool Runescape data types.

Installation

Add this to your Cargo.toml file:

toml [dependencies] osrs-buffer = "0.6.0"

Example

```rust use osrs_buffer::{ReadExt, WriteExt};

fn main() { let mut vec = Vec::new(); vec.write_i8(123);

assert_eq!(vec.read_i8(), 123);

} ```

License

This project is licensed under the MIT license.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in osrs-buffer by you, shall be licensed as MIT, without any additional terms or conditions.