AStarTest.Map.GetBlocked C# (CSharp) 메소드

GetBlocked() 공개 메소드

public GetBlocked ( IntVector3 p ) : bool
p IntVector3
리턴 bool
        public bool GetBlocked(IntVector3 p)
        {
            return this.Grid[p.Z, p.Y, p.X].Blocked;
        }