Ejemplo n.º 1
0
        public ScenarioRoadPoint SetChild(string sceneID)
        {
            this.child = new ScenarioRoadPoint(sceneID).SetParent(this);

            return(this);
        }
Ejemplo n.º 2
0
        public ScenarioRoadPoint SetParent(ScenarioRoadPoint parent)
        {
            this.parent = parent;

            return(this);
        }
Ejemplo n.º 3
0
 public ScenarioRoadMap(Scenario scenario)
 {
     this.EntryPoint = null;
     this.scenario   = scenario;
 }