cargo fmt and removed the unessecary examples.

This commit is contained in:
MalekiRe
2024-05-29 16:30:15 -07:00
committed by Malek
parent 1d27157142
commit ec16d9a254
13 changed files with 59 additions and 72 deletions

View File

@@ -1,7 +1,11 @@
use bevy::{ecs::component::Component, math::bool, prelude::{Deref, DerefMut}};
use bevy::{
ecs::component::Component,
math::bool,
prelude::{Deref, DerefMut},
};
#[repr(transparent)]
#[derive(Clone, Copy, Component, Debug,DerefMut,Deref)]
#[derive(Clone, Copy, Component, Debug, DerefMut, Deref)]
pub struct HandBoneRadius(pub f32);
#[repr(u8)]