AStarTest.Map.GetBlocked C# (CSharp) Method

GetBlocked() public method

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