bakkesmod-rust icon indicating copy to clipboard operation
bakkesmod-rust copied to clipboard

Rust SDK for writing BakkesMod plugins

Results 2 bakkesmod-rust issues
Sort by recently updated
recently updated
newest added

Hey, I was just wondering if you were open to taking contributions on this crate. I've been introducing myself to it, and I'd like to update some documentation and bring...

```rust pub struct RLArray { pub data: *mut usize, count: u32, max: u32, phantom: PhantomData } pub fn get(&self, index: isize) -> T { unsafe { let ptr = self.data.offset(index);...