lol idk #1

Open
Quaternions wants to merge 838 commits from StrafesNET/strafe-project:master into master
Showing only changes of commit a88debe9f1 - Show all commits

View File

@ -5,6 +5,16 @@ pub struct Services{
pub game:Ref,
pub workspace:Ref,
}
impl Services{
pub fn find_in(dom:&WeakDom)->Option<Self>{
Some(Services{
workspace:*dom.root().children().iter().find(|&&r|
dom.get_by_ref(r).is_some_and(|instance|instance.class=="Workspace")
)?,
game:dom.root_ref(),
})
}
}
pub fn new_place_with_instances_in_workspace(mut instance_dom:WeakDom)->(WeakDom,Services){
//workspace