示例#1
0
        public void Read(MpqFileStream stream)
        {
            Int0        = stream.ReadValueS32();
            Int1        = stream.ReadValueS32();
            SNOScene    = stream.ReadValueS32();
            Int2        = stream.ReadValueS32();
            this.TagMap = stream.ReadSerializedItem <TagMap>();

            stream.Position += (2 * 4);
            CustomTileInfo   = new CustomTileInfo(stream);
        }
示例#2
0
        public void Read(MpqFileStream stream)
        {
            ExitDirectionBits = stream.ReadValueS32();
            TileType          = stream.ReadValueS32();
            SNOScene          = stream.ReadValueS32();
            Probability       = stream.ReadValueS32();
            this.TagMap       = stream.ReadSerializedItem <TagMap>();

            stream.Position += (2 * 4);
            CustomTileInfo   = new CustomTileInfo(stream);
        }
示例#3
0
文件: World.cs 项目: Naxp/mooege
        public void Read(MpqFileStream stream)
        {
            ExitDirectionBits = stream.ReadValueS32();
            TileType = stream.ReadValueS32();
            SNOScene = stream.ReadValueS32();
            Probability = stream.ReadValueS32();
            this.TagMap = stream.ReadSerializedItem<TagMap>();

            stream.Position += (2 * 4);
            CustomTileInfo = new CustomTileInfo(stream);
        }
示例#4
0
文件: World.cs 项目: mstaJ/mooege
        public void Read(MpqFileStream stream)
        {
            Int0 = stream.ReadValueS32();
            Int1 = stream.ReadValueS32();
            SNOScene = stream.ReadValueS32();
            Int2 = stream.ReadValueS32();
            this.TileTagMap = stream.ReadSerializedItem<TagMap>();

            stream.Position += (2 * 4);
            CustomTileInfo = new CustomTileInfo(stream);
        }