BananaMpq.Layer.WmoRelated.MohdChunk.MohdChunk C# (CSharp) Method

MohdChunk() private method

private MohdChunk ( ChunkHeader header ) : System.Collections.Generic
header BananaMpq.Layer.Chunks.ChunkHeader
return System.Collections.Generic
        internal unsafe MohdChunk(ChunkHeader* header)
            : base(header)
        {
            var mohd = (Mohd*)(header + 1);
            Bounds = mohd->bounds;
            GroupCount = mohd->groupCount;
            DoodadCount = mohd->doodadCount;
        }
MohdChunk