StdPaint.ConsoleBuffer.GetUnitBackColor C# (CSharp) Method

GetUnitBackColor() public method

Gets the background color of the specified unit.
public GetUnitBackColor ( Point point ) : BufferColor
point Point The location of the unit.
return BufferColor
        public BufferColor GetUnitBackColor(Point point)
        {
            if (InBounds(ref point))
            {
                return _buffer[point.Y, point.X].BackColor;
            }
            return BufferColor.Black;
        }

Same methods

ConsoleBuffer::GetUnitBackColor ( int x, int y ) : BufferColor