Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ Though this binding tries to stay close to the simple C API, it makes some chang
</tr>
</table>

# **!!unmaintained!!**

this repository contains a fork of an old version of [`raylib-rs`](https://github.com/raylib-rs/raylib-rs). as old problems got fixed, i no longer need to use this fork in my new projects, but i will be keeping this repository up to make sure old versions can be recompiled. use https://github.com/raylib-rs/raylib-rs

---

Most development happens over at: https://github.com/raylib-rs/raylib-rs


Expand Down
5 changes: 5 additions & 0 deletions raylib/src/core/drawing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ impl<'a> std::ops::Deref for RaylibDrawHandle<'a> {
&self.0
}
}
impl<'a> std::ops::DerefMut for RaylibDrawHandle<'a> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}

impl<'a> RaylibDraw for RaylibDrawHandle<'a> {}

Expand Down