Abathur.Core.Intel.Map.BitMapHandler.IsSet C# (CSharp) Method

IsSet() public method

public IsSet ( int x, int y ) : bool
x int
y int
return bool
        public override bool IsSet(int x, int y) {
            if (CalculateIndex(x, y, _data.Length, out int index))
                return _data[index];
            return false;
        }