FSO.Files.Formats.IFF.Chunks.SPRFrame.ReadDeferred C# (CSharp) Méthode

ReadDeferred() public méthode

public ReadDeferred ( uint version, IoBuffer io ) : void
version uint
io FSO.Files.Utils.IoBuffer
Résultat void
        public void ReadDeferred(uint version, IoBuffer io)
        {
            var reserved = io.ReadUInt32();
            var height = io.ReadUInt16();
            var width = io.ReadUInt16();
            this.Init(width, height);
            this.Decode(io);
        }