feat: /hmd

This commit is contained in:
Nova
2022-09-05 01:22:19 -04:00
parent d23d974e34
commit 2ea2ec0b07
5 changed files with 42 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ pub struct Node {
local_methods: DashMap<String, Method, BuildHasherDefault<FxHasher>>,
destroyable: AtomicBool,
alias: OnceCell<Arc<Alias>>,
pub alias: OnceCell<Arc<Alias>>,
aliases: Registry<Alias>,
pub spatial: OnceCell<Arc<Spatial>>,
@@ -198,7 +198,7 @@ impl Node {
#[allow(dead_code)]
pub struct Alias {
node: Weak<Node>,
original: Weak<Node>,
pub original: Weak<Node>,
local_signals: Vec<&'static str>,
local_methods: Vec<&'static str>,