*
* @param point
* @return cursor
*/
public StendhalCursor getCursor(Point point) {
StendhalCursor cursor = null;
// is the cursor aiming at a text box?
final RemovableSprite text = screen.getTextAt(point.x, point.y);
if (text != null) {
return StendhalCursor.NORMAL;