Exemplo n.º 1
0
            public NavCellBorderData(MpqFileStream stream)
            {
                w0 = stream.ReadInt16();
                w1 = stream.ReadInt16();

            }
Exemplo n.º 2
0
 public NavCellLookup(MpqFileStream stream)
 {
     Flags = stream.ReadInt16();
     wCell = stream.ReadInt16();
 }
Exemplo n.º 3
0
 public NavGridSquare(MpqFileStream stream)
 {
     Flags = stream.ReadInt16();
     w1 = stream.ReadInt16();
     w2 = stream.ReadInt16();
 }
Exemplo n.º 4
0
 public NavCell(MpqFileStream stream)
 {
     Min = new Vector3D(stream.ReadFloat(), stream.ReadFloat(), stream.ReadFloat());
     Max = new Vector3D(stream.ReadFloat(), stream.ReadFloat(), stream.ReadFloat());
     Flags = stream.ReadInt16();
     NeighbourCount = stream.ReadInt16();
     NeighborsIndex = stream.ReadInt32();
 }