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

Set() public method

public Set ( int x, int y, byte value ) : void
x int
y int
value byte
return void
        public override void Set(int x, int y, byte value = 0) {
            if (CalculateIndex(x, y, _data.Length, out int index))
                _data.Set(index, value != 0);
        }