This repository has been archived on 2021-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
ludum-dare-49/game/src/utilities/non_ref_raylib.rs

30 lines
633 B
Rust

use std::{borrow::Borrow, cell::{Cell, RefCell, RefMut}, ops::{Deref, DerefMut}, rc::Rc, sync::Arc};
use raylib::{prelude::RaylibDraw, RaylibHandle};
#[derive(Debug)]
pub struct HackedRaylibHandle(RaylibHandle);
impl RaylibDraw for HackedRaylibHandle {}
impl From<RaylibHandle> for HackedRaylibHandle {
fn from(handle: RaylibHandle) -> Self {
Self(handle)
}
}
impl Deref for HackedRaylibHandle {
type Target = RaylibHandle;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for HackedRaylibHandle {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}