示例#1
0
 public StraightRoad Clone()
 {
     StraightRoad sr = new StraightRoad(scene, map, roadtype, this.Texture );
     return sr;
 }
示例#2
0
 public NodeRoad(StraightRoad road, List<RoadTypes> NextRoads, RoadTypes roadtype)
 {
     this.road = road;
     this.NextRoads = NextRoads;
     this.roadtype = roadtype;
 }