StdPaint.ConsoleBuffer.GetUnitCharacter C# (CSharp) Method

GetUnitCharacter() public method

Gets the character in the specified unit.
public GetUnitCharacter ( Point point ) : char
point Point The location of the unit.
return char
        public char GetUnitCharacter(Point point)
        {
            if (InBounds(point.X, point.Y))
            {
                return _buffer[point.Y, point.X].CharData;
            }
            return '\0';
        }

Same methods

ConsoleBuffer::GetUnitCharacter ( int x, int y ) : char