ArkaliaCore.Game.Game.Engines.Pathfinding.PathNode.PathNode C# (CSharp) Méthode

PathNode() public méthode

public PathNode ( int cellid, int dir ) : System
cellid int
dir int
Résultat System
        public PathNode(int cellid, int dir)
        {
            this.CellID = cellid;
            this.Dir = dir;
        }