protected boolean justTouched(FlxObject touchArea) {
   for (int i = 0; i < 2; ++i)
     if (FlxG.mouse.justPressed(i)
         && touchArea.overlapsPoint(FlxG.mouse.getScreenPosition(i), true)) return true;
   return false;
 }