FSO.LotView.Components.WallComponent.WallsDownAt C# (CSharp) 메소드

WallsDownAt() 개인적인 메소드

Walls Cutaway helper methods.
private WallsDownAt ( int x, int y ) : bool
x int
y int
리턴 bool
        private bool WallsDownAt(int x, int y)
        {
            var cuts = blueprint.Cutaway;
            return cuts[y * blueprint.Width + x];
        }