/**
  * @param xmod X position of parent component
  * @param ymod Y position of parent component
  */
 public void draw() {
   // This method should be overriden by ANY visual component
   for (MenuComponent mc : components) {
     mc.draw();
   }
 }