AlbLib.Mapping.ObjectInfo.ObjectInfo C# (CSharp) Method

ObjectInfo() public method

public ObjectInfo ( BinaryReader reader ) : System
reader System.IO.BinaryReader
return System
        public ObjectInfo(BinaryReader reader)
            : this()
        {
            Type = reader.ReadByte();
            Collision = reader.ReadBytes(3);
            Texture = reader.ReadInt16();
            AnimationsCount = reader.ReadByte();
            reader.ReadByte();
            TextureWidth = reader.ReadInt16();
            TextureHeight = reader.ReadInt16();
            MapWidth = reader.ReadInt16();
            MapHeight = reader.ReadInt16();
        }

Same methods

ObjectInfo::ObjectInfo ( Stream input ) : System
ObjectInfo