namespace T3.Core.Operator.Interfaces; /// /// Provides a special hook to combine compound operators with an update method. /// /// This can be useful to invoke special actions before using the update for the the inner Output slots. public interface ICompoundWithUpdate { // void RegisterOutputUpdateAction(ISlot slot, Action connectedUpdate); }