* adds an object to the board, which automatically creates the corresponding entity
*
* @param rpobject object
*/
public void add(RPObject rpobject) {
Entity entity = EntityFactory.create(rpobject);
entities.put(rpobject.getID(), entity);
if (entity instanceof Shape) {
shapes.add((Shape) entity);
fire();
}