30 lines
633 B
Rust
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
|
|
}
|
|
}
|