Patcher.Rules.Proxies.ProxyFeatureFactory.CreateEffectCollectionProxy C# (CSharp) Method

CreateEffectCollectionProxy() public static method

public static CreateEffectCollectionProxy ( this target, Proxy parent ) : EffectCollectionProxy
target this
parent Proxy
return EffectCollectionProxy
        public static EffectCollectionProxy CreateEffectCollectionProxy(this IFeaturingEffects target, Proxy parent)
        {
            var proxy = parent.Provider.CreateProxy<EffectCollectionProxy>(parent.Mode);
            proxy.Target = target;
            return proxy;
        }