Patcher.Rules.Proxies.ProxyFeatureFactory.CreateObjectBoundsProxy C# (CSharp) 메소드

CreateObjectBoundsProxy() 공개 정적인 메소드

public static CreateObjectBoundsProxy ( this target, Proxy parent ) : ObjectBoundsProxy
target this
parent Proxy
리턴 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;
        }