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