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

CreateObjectBoundsProxy() public static method

public static CreateObjectBoundsProxy ( this target, Proxy parent ) : ObjectBoundsProxy
target this
parent Proxy
return Patcher.Rules.Proxies.Fields.Skyrim.ObjectBoundsProxy
        public static ObjectBoundsProxy CreateObjectBoundsProxy(this IFeaturingObjectBounds target, Proxy parent)
        {
            var proxy = parent.Provider.CreateProxy<ObjectBoundsProxy>(parent.Mode);
            proxy.Record = target;
            return proxy;
        }