public void addUpdateableEntityToUpdater(BoardAbstract board)
 {
     if (this.updaterSlot.isActive())
     {
         //System.err.println( "EntityStatic: ["+this+"] is already in the updater list");
     }
     else
     {
         this.updaterSlot = board.addEntityToUpdater(this);
     }
 }
 public Collider addUltralightColliderTo(int radius, BoardAbstract board)
 {
     return(CompositeFactory.addUltralightColliderTo(this, radius, board));
 }
 public Collider addColliderTo(Boundary bounds, BoardAbstract board)
 {
     return(CompositeFactory.addColliderTo(this, bounds, board));
 }