StdPaint.ConsoleBuffer.SetUnitAttributes C# (CSharp) Method

SetUnitAttributes() public method

Sets the attributes for a specific unit in the buffer.
public SetUnitAttributes ( Point point, BufferUnitAttributes attributes ) : void
point Point The location of the unit.
attributes BufferUnitAttributes The attributes to assign to the unit.
return void
        public void SetUnitAttributes(Point point, BufferUnitAttributes attributes)
        {
            if (!InBounds(ref point)) return;
            SetUnitAttributes(point.X, point.Y, attributes);
        }

Same methods

ConsoleBuffer::SetUnitAttributes ( int x, int y, BufferUnitAttributes attributes ) : void