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;
            }
        }