Alexandria.Engines.Unreal.Core.RootObject.Load C# (CSharp) Метод

Load() публичный Метод

Load this object's data from the BinaryReader.
or are null.
public Load ( Package package, BinaryReader reader, long end ) : RootObject
package Package The that this object is within.
reader System.IO.BinaryReader The to use.
end long The offset within the stream of the end of the object's data.
Результат RootObject
        public RootObject Load(Package package, BinaryReader reader, long end)
        {
            if(package == null)
                throw new ArgumentNullException("package");
            Package = package;
            return Load(reader, end);
        }

Same methods

RootObject::Load ( BinaryReader reader, long end ) : RootObject