Closed thygrrr closed 3 months ago
public ref L Ref<L>(Link<L> link) where L : class => ref _world.GetComponent<L>(this, link);
Probably need to create a specific function just for this, or allow ref to return an array-like for a Wildcard match expression.
Resolved in 0.5.8
What: You can't get the backing link if you don't already have the link to identify it.
public ref L Ref<L>(Link<L> link) where L : class => ref _world.GetComponent<L>(this, link);
Potential Fix:
Probably need to create a specific function just for this, or allow ref to return an array-like for a Wildcard match expression.