using UnityEngine; using System.Collections; public class Path{ Node start; Node end; public Path(Node start,Node end){ this.start = start; this.end = end; //TODO fonction de points } Vector3 getNext() { return Vector3.one; } }