ArkaliaCore.Game.Game.Engines.PathEngine.LastNode C# (CSharp) 메소드

LastNode() 공개 메소드

Get the last node of this move
public LastNode ( ) : PathNode
리턴 ArkaliaCore.Game.Game.Engines.Pathfinding.PathNode
        public Pathfinding.PathNode LastNode()
        {
            if (this._cells.Count > 0)
            {
                return this._cells.LastOrDefault();
            }
            else
            {
                return null;
            }
        }