------------------------------------------------------------------------
This is the project README file. Here, you should describe your project.
Tell the reader (someone who does not know anything about this project)
all he/she needs to know. The comments should usually include at least:
------------------------------------------------------------------------

PROJECT TITLE:
PURPOSE OF PROJECT:

To see how to do collision detection using getOneIntersectingObject()
and to remove an object with getWorld().remvoveObject().

In the Bee class one will find the code:

Actor aFlower = getOneIntersectingObject(Flower.class) ;
        if (aFlower != null)
        {
          getWorld().removeObject(aFlower) ;
          // getWorld().removeObject(this) ;
        }

If you uncomment the second removeObject line BOTH the flower and the
Bee will be removed.  "this" refers to "this Bee"

VERSION or DATE:  6/25/08

HOW TO START THIS PROJECT:
AUTHORS:  P4games.org, Leutenegger

USER INSTRUCTIONS:
