setCharacter method
Sets character at coordinates.
Implementation
@override
void setCharacter(int x, int y, String char) {
if (x >= 0 && x < bounds.width && y >= 0 && y < bounds.height) {
parent.setCharacter(bounds.x + x, bounds.y + y, char);
}
}