ArkaliaCore.Game.Game.Engines.Pathfinding.PathNode.PathNode C# (CSharp) 메소드

PathNode() 공개 메소드

public PathNode ( int cellid, int dir ) : System
cellid int
dir int
리턴 System
        public PathNode(int cellid, int dir)
        {
            this.CellID = cellid;
            this.Dir = dir;
        }