StdPaint.ConsoleBuffer.SetUnitCharacter C# (CSharp) Method

SetUnitCharacter() public method

Sets the character for a specific unit in the buffer.
public SetUnitCharacter ( Point p, char c ) : void
p Point The location of the unit.
c char The character to assign to the unit.
return void
        public void SetUnitCharacter(Point p, char c)
        {
            SetUnitCharacter(p.X, p.Y, c);
        }

Same methods

ConsoleBuffer::SetUnitCharacter ( int x, int y, char c ) : void