You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor ISignal to an abstract class with a parameterless constructor.
This way Signals.Get<T>() where T: ISignal, new() can be replaced with Signals.Get<T>() where T: ABaseSignal. That way auto completion is working way better 💥
The text was updated successfully, but these errors were encountered:
Refactor ISignal to an abstract class with a parameterless constructor.
This way
Signals.Get<T>() where T: ISignal, new()
can be replaced withSignals.Get<T>() where T: ABaseSignal
. That way auto completion is working way better 💥The text was updated successfully, but these errors were encountered: