Example #1
0
 internal PathLink(PathNode destination, TerrainType type, float length, PathArea pathArea)
 {
     destinationNode = destination;
     _terrainType    = type;
     this.length     = length;
     this.pathArea   = pathArea;
 }
Example #2
0
 internal void update(PathLink link)
 {
     pathArea     = link.pathArea;
     _terrainType = link._terrainType;
 }