/* ----------------------------- Konstruktor ------------------------------------ */
 public Product(long id, string name, Point3D pos, Point3D nextPos, IconSet icons)
 {
     this.id = id;
     this.name = name;
     this.position = pos;
     this.nextPosition = nextPos;
     this.model = icons.getProductModel(name);
     this.color = icons.getProductColor(name);
 }