A buffer for Oldschool Runescape data types.
Add this to your Cargo.toml
file:
toml
[dependencies]
osrs-buffer = "0.6.0"
```rust use osrs_buffer::{ReadExt, WriteExt};
fn main() { let mut vec = Vec::new(); vec.write_i8(123);
assert_eq!(vec.read_i8(), 123);
} ```
This project is licensed under the MIT license.
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.